Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was running a simple merge and expecting no conflicts, and I ran git merge my_dev_branch

However I got a merge conflict which looked messy to resolve, and made me think that I wasn't clear on my branch history. Rather than resolve the conflict I would like to abandon the merge and go back to where I was before.

Two questions:

  1. Am I right in thinking that I could clean out my staging area by running git checkout HEAD <filename> on each file per this question and that this would amount to abandoning the merge?
  2. Is there a way I can do this in one command?
share|improve this question

1 Answer

up vote 2 down vote accepted

Try git merge --abort. Handy, eh?

share|improve this answer
;-) perfect. Much appreciated. – Derek Hill Nov 8 '12 at 7:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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