git报错The project you were looking for could not be found 解决方式

简介: git报错The project you were looking for could not be found 解决方式

一、拉代码报错The project you were looking for could not be found

问题描述:

使用git从远程仓库克隆项目到本地的时候。

git clone http://gitlab.com/project/xxxx.git

出现这个问题:The project you were looking for could not be found.


原因分析:

  1. 你的账号没有项目的权限,你可以在浏览器输入你的项目地址,如果可以进入,则说明有权限;若不能进入,说明你没有该项目的权限。


  1. 你电脑的git自动保存了其他的用户名密码信息,与当前项目的用户名密码与之前的发生冲突。


解决方案:
1、一次性

克隆的时候远程地址带上用户名及密码即可解决

git clone http://username:password@gitlab.com/project/xxxx.git
2、永久性

清除本地git账户,重新输入用户名与密码。之后再进行git操作时,弹出用户名密码窗口,输入即可。

windows:

git config --system --unset  credential.helper


mac:

git config --global --unset credential.helper


二、提交报错committing is not possible because you have unmerged files.

问题描述:

Committing is not possible because you have unmerged files.


原因分析:

由于您没有合并的文件,因此无法提交。


解决方案:

用git diff或者git status 查看哪些文件冲突,有冲突的会提示:

++<<<<<<< HEAD

++<<<<<<< new_branch


修改你的冲突的文件,然后用git add xxx,把你修改的文件全部都添加进去。之后就是正常的提交流程。


三、项目推送时遇Git推送错误

问题描述:

error: failed to push some refs to 'http://gitlab.com/project/xxxx.git’

原因分析:

这个问题的产生是因为远程仓库与本地仓库并不一致所造成。

解决方案:

把远程库同步到本地库就可以了。

执行命令:

git pull --rebeise origin master

将远程仓库中的更新合并到本地仓库,–rebase的作用是取消掉本地仓库中刚刚的commit


四、项目提交时遇Git错误

问题描述:

error: src refspec master does not match any

原因分析:

引起该错误的原因是,目录中没有文件,空目录不能提交。

解决方案:

执行:

git pull origin master

git push origin master


五、正常流程:

1、克隆代码

把git上的代码拉到本地

2、编辑项目

修改项目代码

3、提交代码

提交到本地仓库保存

4、拉取代码

拉取线上最新代码

5、解决冲突

如果有冲突,先解决冲突,没有则跳过

6、推送代码

把本地代码推送到线上


六、常用命令:

初始化仓库:git init


克隆项目:git clone


添加文件到暂存区:git add


添加当前目录中的所有文件:git add .


提交到本地仓库:git commit -m “”


推送到远程仓库:git push origin


拉取远程仓库所有分支合并到本地:git pull


创建分支:git branch


查看分支:git branch


切换分支:git checkout


删除分支:git branch -d


合并分支:git merge


查看存储库的状态:git status


显示提交历史:git log


目录
相关文章
|
8天前
|
开发工具 git
git 使用之remote: File [4e21e71a555febaa4dfaaa05cf7eeb606ea96ae2] size 104.090MB, exceeds quota 100MB remote: Please remove the file[s] from history and try again 报错如何解决-优雅草卓伊凡
git 使用之remote: File [4e21e71a555febaa4dfaaa05cf7eeb606ea96ae2] size 104.090MB, exceeds quota 100MB remote: Please remove the file[s] from history and try again 报错如何解决-优雅草卓伊凡
25 3
git 使用之remote: File [4e21e71a555febaa4dfaaa05cf7eeb606ea96ae2] size 104.090MB, exceeds quota 100MB remote: Please remove the file[s] from history and try again 报错如何解决-优雅草卓伊凡
|
5月前
|
存储 Shell 开发工具
8-8|windows上Git报错
8-8|windows上Git报错
|
5月前
|
机器学习/深度学习 Shell 开发工具
Python使用管道执行git命令报错|4-7
Python使用管道执行git命令报错|4-7
|
6月前
|
开发工具 git
【Azure App Service】App Service设置访问限制后,使用git clone代码库出现403报错
【Azure App Service】App Service设置访问限制后,使用git clone代码库出现403报错
|
6月前
|
开发工具 Android开发 git
解决Idea报错出现Git is not installed
解决Idea报错出现Git is not installed
1160 2
|
开发工具 git
git出现报错:src refspec master does not match any
git出现报错:src refspec master does not match any
927 0
|
27天前
|
Java 网络安全 开发工具
Git进阶笔记系列(01)Git核心架构原理 | 常用命令实战集合
通过本文,读者可以深入了解Git的核心概念和实际操作技巧,提升版本管理能力。
|
28天前
|
网络安全 开发工具 git
mac git clone命令提示git@gitee.com: Permission denied (publickey).问题修复
mac git clone命令拉取gitee上项目代码时提示密钥问题
|
2月前
|
机器学习/深度学习 Shell 网络安全
【Git】Git 命令参考手册
Git 命令参考手册的扩展部分,包含了从基础操作到高级功能的全面讲解。
74 3
|
3月前
|
开发工具 git
git 常用命令
这些只是 Git 命令的一部分,Git 还有许多其他命令和选项,可根据具体需求进行深入学习和使用。熟练掌握这些命令能够帮助你更高效地管理代码版本和协作开发。

相关实验场景

更多