从git上克隆项目时报错remote: The project you were looking for could not be found

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

在使用Git客户端克隆和pull远程仓库的时候报错:

 解决:

在自己的项目路径上加上自己的用户名,
例如:
Git clone http://10.9.100.1:0000/credit/code/xiangmu.git (失败)
Git clone http://用户名@10.9.100.1:0000/credit/code/xiangmu.git(成功)

这样会在克隆的时候提示输入密码,确认用户!就可以正常更新上游仓库了!

原文链接:https://blog.csdn.net/wzb6351/article/details/87911951

原文地址:https://www.cnblogs.com/s1-myblog/p/15175402.html