美文网首页
git pull 提示project not be found

git pull 提示project not be found

作者: 沐春怀雪 | 来源:发表于2020-08-21 17:03 被阅读0次

错误描述如下:

remote: The project you were looking for could not be found.

fatal:repository ……  not found

分析原因:

由于电脑上面存了其他人的账号,默认用的还是之前的账号,所以没有办法鉴权,必须清除和重置;

解决方案:

先卸载git证书,然后再重新安装

git credential-manager uninstall

git credential-manager install

输入完上面的两个命令之后,再次git pull,会提示输入用户名和密码,一切进入正题,但是新的问题又来,需要每次git pull都输入用户名和密码,是不是很烦,这是因为没有保存credential.helper

解决办法就是输入完用户名和密码之后保存一下,下次就可以愉快的git pull 了

git config --global credential.helper store

相关文章

网友评论

      本文标题:git pull 提示project not be found

      本文链接:https://www.haomeiwen.com/subject/tfxpjktx.html