Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to move the last several commits I've made to master to a new branch and take master back to before those commits were made. Unfortunately, my Git-fu isn't strong enough yet, any help?

I.e. How can I go from this

master A - B - C - D - E

to this?

newbranch     C - D - E
             /
master A - B 
share|improve this question
17  
Note: I asked the opposite question here – Benjol Dec 16 '10 at 8:56

4 Answers

up vote 598 down vote accepted

Unless there are other circumstances involved, this can be easily done by branching and rolling back.

git branch newbranch
git reset --hard HEAD~3 # Go back 3 commits. You *will* lose uncommitted work.
git checkout newbranch

But do make sure how many commits to go back.

WARNING This method works because you are creating a new branch with the first command: git branch newbranch. If you want to use an existing branch you need to merge your changes into the existing branch before executing git reset --hard HEAD~3. If you don't merge your changes first, they will be lost. So, if you are working with an existing branch it will look like this:

git checkout existingbranch
git merge master
git checkout master
git reset --hard HEAD~3 # Go back 3 commits. You *will* lose uncommitted work.
git checkout existingbranch
share|improve this answer
57  
And in particular, don't try to go back further than the point where you last pushed commits to another repository from which somebody else might have pulled. – Greg Hewgill Oct 27 '09 at 3:23
22  
Wondering if you can explain WHY this works. To me you're creating a new branch, removing 3 commits from the old branch you are still on, and then checking out the branch you made. So how do the commits you removed magically show up in the new branch? – Jonathan Dumaine Aug 3 '10 at 18:28
33  
@Jonathan Dumaine: Because I created the new branch before removing the commits from the old branch. They're still there in the new branch. – sykora Aug 4 '10 at 8:28
13  
branches in git are just markers which point to commits in history, there is nothing being cloned, created or deleted (except the markers) – knittl Aug 16 '10 at 11:32
36  
Also note: Don't do this with uncommitted changes in your working copy! This just bit me! :( – Adam Tuttle Oct 25 '11 at 3:59
show 13 more comments

For those wondering why it works (as I was at first):

You want to go back to C, and move D and E to the new branch. Here's what it looks like at first:

A-B-C-D-E (HEAD)
        ↑
      master

After git branch newBranch:

    newBranch
        ↓
A-B-C-D-E (HEAD)
        ↑
      master

After git reset --hard HEAD~2:

    newBranch
        ↓
A-B-C-D-E (HEAD)
    ↑
  master

Since a branch is just a pointer, master pointed to the last commit. When you made newBranch, you simply made a new pointer to the last commit. Then using git reset you moved the master pointer back two commits. But since you didn't move newBranch, it still points to the commit it originally did.

share|improve this answer
5  
You do need --hard, because otherwise git leaves the changes from the reset commits in the working directory (or at least did for me). – Andrew Aug 22 '11 at 22:05
@Andrew, you're right. My thinking was still a bit muddled a month ago when I wrote this. Fixed. – Kyralessa Aug 22 '11 at 22:10
2  
Nicely explained, thanks! – Philip Fourie Feb 8 '12 at 3:46
3  
Thanks for the explanation. – Will Tomlins Feb 21 '12 at 14:33
Good one, txn! ;-) – Sander Versluys Sep 27 '12 at 10:23
show 4 more comments

The method exposed by sykora is the best option in this case. But sometimes is not the easiest and it's not a general method. For a general method use git cherry-pick:

git checkout newbranch
git cherry-pick 612ecb3
git cherry-pick 453ac3d
git cherry-pick 9aa1233

where 612ecb3 are the first six characters in the C commit, 453ac3d the same for D and 9aa1233 for E.

git cherry-pick applies those three commits to newbranch.

If you are usign Git 1.7.2+, you can also cherry pick a range of commits, so the above example is simplified to:

git checkout newbranch
git cherry-pick 612ecb3..9aa1233

You can find the first six characters for each commit (or just use the whole commit name) by doing git log in a branch that has that commit.

share|improve this answer
3  
Wasn't the OP trying to move from master to newbranch? If you cherry-pick whilst on master, you would be adding to the master branch -- adding commits that it already had, in fact. And it doesn't move back either branch head to B. Or is there something subtle and cool I'm not getting? – RaveTheTadpole Jul 6 '12 at 2:48
Well, that's an example, but you are right, in the case proposed by the OP it should be working on newbranch. I edit to avoid mistakes. Thanks. – Ivan Jul 6 '12 at 17:12

if you've pushed and others may already have pulled the commits you want to transfer you maybe best to create a third branch

this is untidy but it not an utter mess that you maybe in otherwise

share|improve this answer

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.