Re: Now What?
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:42:10
Linus Torvalds [off-list ref] writes:
And that's exactly what "git reset --hard" is there for. It will reset to the old head of the branch you are on (ie HEAD), and get rid of everything that was done to the tree.
OK, then let's rewrite the procedure using 'reset --hard'. Then
we do not have to use 'checkout -f' afterwards. The advantage
of this approach is that 'reset --hard' would remove the new
files the failed merge might have left in your working tree,
while using 'checkout -f' would.
What now? Depends on what you wanted to do. If what you wanted
to do was to merge my "master" to your "maint", then you would
resolve the conflicts by hand, but probably that was not what
you wanted to do.
After that pull, your repository is in this state:
. the index file and working tree is somewhere between your
"maint" and my "master". "somewhere between" is because the
merge obviously failed.
. the "maint" head has not moved. Your .git/HEAD points at the
"maint" branch.
. the "origin" head points at my latest "master" head.
First thing is to bring your tree to a known state, to make
recovery easier.
$ git reset --hard
would match your working tree to your .git/HEAD, i.e. your
"maint".
If you keep a copy of my "master" plus zero or more of your own
development in your "master" branch, and what you wanted to do
was to build my "master" plus those developments of your own,
then:
$ git checkout master
$ git pull . origin
If your "master" is just a vanilla copy of my "master", then
this pull would result in a fast forward, and "master" and
"origin" will point at the same commit after this pull
operation. Otherwise, you would merge your changes and my
"master" updates into your "master" branch.
If what you wanted to do was to build my "master" vanilla, then:
$ git checkout origin
because your remotes/origin says "origin" is meant to be a
straight copy of my "master".
A good habit to get into is, before pulling, make sure:
. your index matches your HEAD.
. the local modification (i.e. what git-diff-files would report)
is something you do not mind losing.
. you are on the right branch you want to pull into (check with
"git branch").