赞
踩
因为同一个仓库我前几天用了别人的账号,所以我再用自己账号就拉不了代码了!
解决方案:
1、一次性
克隆的时候远程地址带上用户名及密码即可解决
git clone http://username:password@gitlab.com/project/xxxx.git
2、永久性
清除本地git账户,重新输入用户名与密码。之后再进行git操作时,弹出用户名密码窗口,输入即可。
windows:
git config --system --unset credential.helper
如果这清除了之后还是报同样的错,可以清楚缓存之后再拉代码
清除缓存的用户名和密码:
git credential-manager uninstall
mac:
git config --global --unset credential.helper
感谢以下大大:
git报错The project you were looking for could not be found 解决方式-CSDN博客
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。