Skip to content

Instantly share code, notes, and snippets.

@nguyenbathanh
Forked from jbub/squash-commits.sh
Created August 17, 2018 03:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nguyenbathanh/e678e4ed32c7538f6832f2e2067f8b5e to your computer and use it in GitHub Desktop.
Save nguyenbathanh/e678e4ed32c7538f6832f2e2067f8b5e to your computer and use it in GitHub Desktop.
git squash last two commits into one
git rebase --interactive HEAD~2
# we are going to squash c into b
pick b76d157 b
pick a931ac7 c
# squash c into b
pick b76d157 b
s a931ac7 c
# after that just edit the commit message
# This is a combination of 2 commits.
# The first commit's message is:
b
# This is the 2nd commit message:
c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment