Skip to content

Instantly share code, notes, and snippets.

@thbar
Forked from n00neimp0rtant/gist:9515611
Created December 8, 2017 10:34
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thbar/f66a28fbeddd84391663451236d30150 to your computer and use it in GitHub Desktop.
Save thbar/f66a28fbeddd84391663451236d30150 to your computer and use it in GitHub Desktop.
simple squash without rebase
## within current branch, squashes all commits that are ahead of master down into one
## useful if you merged with upstream in the middle of your commits (rebase could get very ugly if this is the case)
## commit any working changes on branch "mybranchname", then...
git checkout master
git checkout -b mybranchname_temp
git merge --squash mybranchname
git commit -am "Message describing all squashed commits"
git branch -m mybranchname mybranchname_unsquashed
git branch -m mybranchname
## optional, not recommended if you want to keep the unsquashed history around for a bit longer
git branch -D mybranchname_unsquashed
## if squashing already-pushed commits...
git push --force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment