git pull中的密码错误 - 重新提示密码?

时间:2016-02-15 10:04:07

标签: git ssh ssh-keys

我为我的私钥设置了一个密码,我在项目中使用了这个密码:

git pull

git提示我输入密码,并且我不小心输入了错误的密码,而且我再次尝试git pull时,CLI说:

ERROR: Repository not found.
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

我如何重新提示 git pull,以便我再次询问密码?

1 个答案:

答案 0 :(得分:2)

尝试以下命令,

git credential-cache exit

如果您想减少记住密码超时,请使用此

git config --global credential.helper "cache --timeout=3600" //in milli seconds

阅读this链接了解详情..