git使用采坑-The project you were looking for could not be found 解决方式
问题描述:使用git clone 项目,出现这个问题:The project you were looking for could not be found.
原因:gi t自动保存git密码的功能(自己在单位电脑用了码云和github做了仓库,估计起了冲突)
解决方案一:
git clone http://@git.coding.net/name/p… —- 失败
添加远程地址的时候带上用户名及密码即可解决,格式如下:
git clone http://yourname:password@git.coding.net/name/project.git —- 成功
解决方案二:
在自己的项目路径上加上自己的用户名,
例如:
Git clone http://git.coding.net/name/pr… —-失败
Git clone http://git账户名@git.coding.n… 然后再弹出的密码输入指令后面输入密码 —- 成功
解决方案三:
清除本地git账户,重新输入用户名密码(最优)
git config –system –unset credential.helper
之后再进行git操作时,弹出用户名密码窗口,输入即可
有问题,请留言!