D'oh! I just made a perfectly good commit to the wrong branch. How do I undo the last commit in my master branch and then take those same changes and get them into my upgrade branch?
Thanks!
|
D'oh! I just made a perfectly good commit to the wrong branch. How do I undo the last commit in my master branch and then take those same changes and get them into my upgrade branch? Thanks! |
|||
|
|
|
If you haven't yet pushed your changes, you can also do a soft reset:
This will revert the commit, but put the committed changes back into your index. Assuming the branches are relatively up-to-date with regard to each other, git will let you do a checkout into the other branch, whereupon you can simply commit:
The disadvantage is that you need to re-enter your commit message. |
|||||||||||||||
|
|
To rollback one commit (make sure you note the commit's hash for the next step):
To pull that commit into a different branch:
Also note that
|
|||
|
If you already pushed your changes, you will need to force your next push after resetting the HEAD.
Just in case, on Windows(using Windows cmd line, not bash) it's actually four
|
|||||||||||
|