Return to Snippet

Revision: 22693
at January 19, 2010 11:54 by jturmel


Initial Code
git rebase --interactive HEAD~10

Initial URL


Initial Description
Squashing
---------
WARNING: "git rebase" changes history. Be careful. Google it.

git rebase --interactive HEAD~10
  (then change all but the first "pick" to "squash")
  squash the last 10 commits into one big commit

Initial Title
Squashing a Git commit

Initial Tags
git

Initial Language
Bash