Git错误处理
Dreamt灬
这个作者很懒,什么都没留下…
展开
-
Git命令使用出现Cannot update paths and switch to branch xxx at the same time解决方法
产生原因 这个问题产生的原因在切换分支的时候,本地git信息中没有你要拉取的分支信息,一般产生错误是使用如下命令造成的 : $ git checkout -b branch_a origin/develop 或 $ git checkout --track origin/develop解决方法:执行git fetch命令 git fetch $ git checkout -b 分支名字 origin/分支名 ...原创 2021-08-07 15:13:33 · 5713 阅读 · 2 评论 -
Git命令使用出现Automatic merge failed; fix conflicts and then commit the result.解决方法
产生原因 这个问题产生的原因是因为git pull 的时候会分为两步, 1、先从远程服务器上拉下代码; 2、进行merge。merge时候失败了,就会出现“Automatic merge failed; fix conflicts and then commit the result。”解决方法:丢弃本地提交,强制回到线上最新版本 git fetch --all git reset --hard origin/你需要下拉的分支(默认master) gi...原创 2021-08-04 09:49:34 · 20893 阅读 · 0 评论