git克隆报错时The project you were looking for could not be found...

Ps D:>git clone http://gitlab.yyy.com/project/xxx.git
Cloning into ‘xxx’..
remote: The project you were looking for could not be found or you don’t have permission to view it.
fatal: repository ‘http://gitlab.yyy.com/project/xxx.git/'not found

前言

问题如上,使用 git clone 命令克隆一个仓库的时候,提示我项目找不到或者没有权限,一开始我还以为路径拼错了,核对了两遍确认仓库地址正确的,访问仓库的权限肯定也有的,我使用账号和密码可以成功登录gitlab网站并且看到这个项目,网上查询方案大概原因是电脑的git自动保存了其他的用户名密码信息,与当前项目的用户名密码与之前的发生冲突,处理掉这种情况就行了。

解决方案

清理或者避开这种冲突的情况:

临时方案

克隆的时候在远程地址加上用户名及密码

1
git clone http://username:password@gitlab.yyy.com/project/xxx.git

永久方案

清除本地保存git账户,下次再进行git clone操作时,在弹出窗口中输入用户名密码

1
git config --system --unset  credential.helper

如果是 Linux 或 Mac系统改为下面的命令

1
git config --global --unset credential.helper

总结

  • 临时用户克隆仓库的命令 git clone http://username:password@gitlab.yyy.com/project/xxx.git
  • 清理本地git账户的命令 git config --system --unset credential.helper

==>> 反爬链接,请勿点击,原地爆炸,概不负责!<<==

国王们以世俗的权柄和虚名让你下跪,只有你可以让自己站起来,满嘴的仁义道德,不过是国王统治下的壁垒,几千年根深蒂固~

2024-11-20 21:15:33

Albert Shi wechat
欢迎您扫一扫上面的微信公众号,订阅我的博客