166

I have a local topic branch that's tracking a remote branch. For the sake of argument, say the commit histories look like this:

A--B--C--O1--O2--O3 (origin/phobos)
       \
         L1--L2--L3 (phobos)

Having looked at the relative commit histories, I now want to discard all the changes to the local phobos branch and get it back to being a direct copy of origin/phobos, so that the local history looks like this:

A--B--C--O1--O2--O3 (phobos origin/phobos)

I really don't want the local changes to the phobos branch, and I really don't want any merges to show up in the origin repository afterwards. (So, just merging isn't what I have in mind.)

This seems like it should be really easy, but my google-fu has failed me. How do I do this?

2 Answers 2

433
git checkout phobos
git reset --hard origin/phobos

This tells Git to reset the head of phobos to the same commit as origin/phobos, and to update the working tree to match.

9
  • 43
    IMO this should be the accepted answer; it issues the "reset" command to transplant the branch pointer, instead of performing surgery with removing/recreating.
    – vdboor
    May 3, 2010 at 15:56
  • Actually, I tried this one first and it threw a ton of errors making by local copy nearly unusable. Delete / recreate may have been less elegant, but I didn't have to ask any follow-up questions. Aug 5, 2010 at 22:03
  • 4
    @Electrons_Ahoy: Hmm, that's definitely not normal. Doing this reset should normally be a problem-free operation if your repo is in good working order. Aug 6, 2010 at 1:44
  • or even if it's hinky. Use git reflog to find your way home if you "accidentally" issued this command without actually reading what it does. :)
    – dbn
    Dec 19, 2012 at 0:25
  • Also this works if you are on the branch and you messed it up locally.
    – slott
    Sep 26, 2014 at 11:52
98

Delete the branch, then recreate it:

$ git branch -D phobos
$ git checkout --track -b phobos origin/phobos

Be aware that deleting the branch blows away the branch's reflog.

Resetting the branch (like shown in the other answer), on the other hand not only preserves the reflog, but actually records the reset in the reflog. This makes the operation easily reversible later, if needed.

7
  • 42
    A problem with this approach versus resetting the branch's head, is that deleting the branch blows away the branch's reflog. Resetting the branch, on the other hand not only preserves the reflog, but actually records the reset in the reflog. This makes the operation easily reversible later, if needed. Mar 30, 2011 at 22:36
  • 10
    @Electrons_Ahoy Would suggest you change the accepted answer here to Dan's (so that people like me who've Googled how to do it are likely to choose the safer method). Jan 20, 2014 at 11:11
  • 6
    @DanMoulding's answer doesn't involve deleting a local branch when it is unnecessary. It is much safer.
    – brma
    Jun 12, 2014 at 18:16
  • 6
    Dan Moulding's answer is safer. I think you should select that one.
    – Daniel Apt
    Jul 20, 2015 at 10:34
  • 1
    I think this exactly answers OP's question - it blats local history, not polluting the history with whatever local changes you had. Sometimes total amnesia is what you want. Having both answers is perfectly good, this way people get to decide what fits their needs
    – hrillo666
    Feb 18, 2020 at 11:42

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

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