git使用采坑-The project you were loo
2020-08-21 本文已影响0人
我的章鱼小丸子呢
问题描述:
使用git clone项目,出现The project you were looking for could not be found
原因:
git自动保存了用户名密码,当前项目的用户名密码与之前的发生冲突。
解决方案:
(1)一次性
git clone http://mygitusername:mypassword@git.coding.net/name/project.git
(2)永久
清除本地git账户,重新输入用户名与密码。
git config --system --unset credential.helper
之后再进行git操作时,弹出用户名密码窗口,输入即可。