Necessary cookies are absolutely essential for the website to function properly. If you need to speak to an expert about anything Git related in relation to your business development then please get in touch.
However, as always, when using -force make sure there are no other commits that follow yours as they would be undone. if you had previously pushed the changes). Then reset your current branch back by one commit (or however many commits you need to go back):Īnd the final step is to move the commits that follow to the new branch:Īnd it’s done! Time to push both branches (with -force if needed, i.e. The first step is to take a note of the commit id of the commit you want to make the head of the new branch. There is more margin for error with this one. Have a look with git status before you commit to check. Then create a new branch and check it out in one go and add and commit your changes again.īe careful with the add -A though as you may be adding unrelated uncommitted files and directories. Then undo the commits with git reset HEAD~Nwhere “N” is the number of commits you want to undo. Use git log to check how many commits you want to roll back. Make sure you are on the branch to which you have been committing. However, it means that all your commits are passed over to the new branch – though of course you should check your results before pushing up to your central repo, as it is slightly easier to get wrong. The second solution is a little more involved.
The downside is, however, that all you don’t get your original commit messages on the new branch and all changes are applied as a single commit with a new commit message etc. The first solution is nice, simple and easy to apply without a relatively small margin for error.