git拉取GitLab工程报错Repository not found

Posted jiqing9006

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git拉取GitLab工程报错Repository not found相关的知识,希望对你有一定的参考价值。

# git clone http://xxx/jiqing/frog.git
正克隆到 'frog'...
fatal: repository 'http://xxx/jiqing/frog.git/' not found

原因:因为以前使用过其他帐号配置信息都保存了,然后帐号密码默认用以前的导致拉取没有权限
解决办法:

git clone http://username:[email protected]/jiqing/frog.git
#git clone http://username:[email protected]/jiqing/frog.git
正克隆到 'frog'...
remote: Counting objects: 2720, done.
remote: Compressing objects: 100% (2210/2210), done.
remote: Total 2720 (delta 402), reused 2713 (delta 401)
接收对象中: 100% (2720/2720), 22.59 MiB | 1.05 MiB/s, done.
处理 delta 中: 100% (402/402), done.

以上是关于git拉取GitLab工程报错Repository not found的主要内容,如果未能解决你的问题,请参考以下文章

Pycharm从GitLab拉取代码时报错Could not read from remote repository

国内gitlab拉取代码很慢

Repository “http://xxx@git.xxx.net/xxx/xxx.git”not found 解决

git从远程仓库gitLab上拉取指定分支到本地仓库

git Github 或gitlab 拉取指定文件夹或文件

macOS 使用 git 从 gitlab 拉取代码提交和推送