Last Updated: February 25, 2016
·
2.211K
· gpakosz

git commit --amend, reuse message

Nothing stellar, yet useful to know. To amend a commit while keeping the existing message:

$ git commit --amend --no-edit

You could even:

$ git config --global alias.fixup 'commit --all --amend --no-edit'