git pull错误

Posted wonderfang

tags:

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

1. Pull is not possible because you have unmerged files.

症状:pull的时候

$ git pull

Pull is not possible because you have unmerged files.
Please, fix them up in the work tree, and then use ‘git add/rm <file>‘
as appropriate to mark resolution, or use ‘git commit -a‘

应该是因为local文件冲突了

解决方法:

引用――

1.pull会使用git merge导致冲突,需要将冲突的文件resolve掉 git add -u, git commit之后才能成功pull.

2.如果想放弃本地的文件修改,可以使用git reset --hard FETCH_HEAD,FETCH_HEAD表示上一次成功git pull之后形成的commit点。然后git pull.
注意:

git merge会形成MERGE-HEAD(FETCH-HEAD) 。git push会形成HEAD这样的引用。HEAD代表本地最近成功push后形成的引用。

以上是关于git pull错误的主要内容,如果未能解决你的问题,请参考以下文章

git pull 上的 Git 错误(无法更新本地参考)

git pull 错误“请求的 URL 返回错误:访问时 503”

git pull 时无法统计错误

git 执行pull错误如何撤销

git 在使用拉取、推送(pull或push)时时候会出现这样的错误提示

git pull遇到错误:error: Your local changes to the following files would be overwritten by merge: