I'm running a very rapid code-compile-test loop where I am amending changes to my commits far more often than not.
For example:
# Make some changes
$ git commit -m "Added feature X"
# Compile, test
# Fix bugs
$ git commit -a --amend
I usually want the same commit message after I fix my bugs. Is there a way to make git skip firing up my EDITOR
and just use the original commit message?