Cleaning-up your commit history with git --fixup
I like to keep my git commit history clean and concise. If each commit is a clean package of atomic changes, a larger pull request is easier to review commit by commit. Conversely, if you have a history littered with fixes and changes, reviewing each commit doesn’t work.
git rebase -i
is a great way to re-order commits, drop commits, or merge commits together with squash
or fixup
. The only difference is that fixup
discards the commit message whereas squash
appends it.