vote up 18 vote down star
13

I've done 'git pull', and received a merge conflict. I know that the other version of the file is good, and that mine is bad (all my changes should be abandoned). How do I do this?

unmerged:   _widget.html.erb

You are in the middle of a conflicted merge.
flag

30% accept rate

6 Answers

vote up 1 vote down

From this article (way way down):

git reset --hard HEAD^
link|flag
vote up 1 vote down
git checkout _widget.html.erb

this will replace the local version of the file with the version from repository.

link|flag
In the middle of a merge, this won't work. You'll get: error: path '_widget.html.erb' is unmerged – chrisk Oct 14 at 4:16
vote up 1 vote down

I think it's git reset you need.

Beware that git revert means something very different to, say, svn revert - in Subversion the revert will discard your (uncommitted) changes, returning the file to the current version from the repo, whereas git revert "undoes" a commit.

git reset should do the equivalent of svn revert, i.e. discard your unwanted changes.

link|flag
vote up 24 vote down

Since your pull was unsuccessful then just HEAD is the last "valid" commit on your branch (not HEAD^):


git reset --hard HEAD

The other piece you want is to let their changes over-ride your changes.

Older versions of git allowed you to use the "theirs" merge strategy:


git pull --strategy=theirs remote_branch

But this has since been removed, as explained in this message by Junio Hamano (the Git maintainer). As noted in the link, instead you would do this:


git fetch origin
git reset --hard origin
link|flag
2  
I apparently don't have enough karma to edit but "get reset --hard origin" should be "git reset --hard origin" – Teflon Ted Jan 14 at 13:29
@Teflon Ted -- corrected, thanks. – Pat Notz Apr 25 at 7:08
vote up 10 vote down

In this particular use case, you don't really want to abort the merge, just resolve the conflict in a particular way.

There is no particular need to reset and perform a merge with a different strategy, either. The conflicts have been correctly highlighted by git and the requirement to accept the other sides changes is only for this one file.

For an unmerged file in a conflict git makes available the common base, local and remote versions of the file in the index. (This is where they are read from for use in a 3-way diff tool by git mergetool.) You can use git show to view them.

# common base:
git show :1:_widget.html.erb

# 'ours'
git show :2:_widget.html.erb

# 'theirs'
git show :3:_widget.html.erb

The simplest way to resolve the conflict to use the remote version verbatim is:

git show :3:_widget.html.erb >_widget.html.erb
git add _widget.html.erb
link|flag
vote up -1 vote down

Aha!

git fetch origin git reset --hard origin

Thanks for that. I'm new to git and couldn't figure out how to do this.

The following scenario happens often: I go to the office and do some work. Then I go home and want to continue on my laptop (different machine). I do a git pull origin, and I get "conflicted merge" problems. And I all I want to do is put my laptop in sync with the branch I was working on when I left the office....

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.