Last active
August 29, 2015 14:05
-
-
Save nelanka/11a61c13b4f6e617509f to your computer and use it in GitHub Desktop.
Git Recipe - Squash a bunch of commits down
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Reset the current branch to the commit just before the last 12: | |
git reset --hard HEAD~12 | |
# HEAD@{1} is where the branch was just before the previous command. | |
# This command sets the state of the index to be as it would just | |
# after a merge from that commit: | |
git merge --squash HEAD@{1} | |
# Commit those squashed changes. The commit message will be helpfully | |
# prepopulated with the commit messages of all the squashed commits: | |
git commit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment