我为我的私钥设置了一个密码,我在项目中使用了这个密码:
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
,以便我再次询问密码?
答案 0 :(得分:2)
尝试以下命令,
git credential-cache exit
如果您想减少记住密码超时,请使用此
git config --global credential.helper "cache --timeout=3600" //in milli seconds
阅读this链接了解详情..