如何使用 git 更新 Sqlmap?

How to update Sqlmap with git?

我正在尝试更新 Linux 中的 sqlmap。但是我得到这样的错误:

error pathspec did not match any file s known to git.

我只是大一新生,对Git不是很熟悉。 我怎样才能克服这个错误?

这取决于您使用的确切 git 命令。

例如,如果您签出一个尚未从远程仓库中获取的分支,请先尝试 git fetch
那么git checkout yourBranch:如果origin/yourBranch存在,就可以了。

签出文件时注意大小写:可以区分大小写。

I can't checkout .fatal : You are on a branch yet to be born .

确保您已添加并至少进行一次提交。

git add .
git commit -m "first commit"

是git

git add 
git commit -m 

不是git直接

sqlmap --update