git拉取代码提示: remote: The project you were looking for could not be found

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

问题: 在拉取代码的时候提示remote: The project you were looking for could not be found. 本来使用的是小乌龟拉取的,后来发现拉取失败改用git命令,得到如上提示. 后面验证了一下,使用小乌龟失败时也是有该提示的.粗心没注意看!

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

在使用Git客户端克隆和pull远程仓库的时候报错: 提示找不到上游仓库,但是地址确定是正确的!

问题原因解析:

在确定自己的地址没错后,想到因为自己的项目不止一个,又有自动保存git密码的功能,然后clone第二个项目的时候就报错!

解决方案:

在自己的项目路径上加上自己的用户名,
例如:
Git clone http://125.01.02.03:10086/test/xiangmu.git (失败,提示如上信息)
Git clone http://用户名@125.01.02.03:10086/test/xiangmu.git(输入密码后即拉取代码成功)

这样执行之后,会提示输入密码,然后输入正确的密码即可以正常使用!

你可能感兴趣的:(git,git)