I want to be able to touch up my commit messages before I push them to my remote, but I want to automatically do that.
I can reword all my additional commits by doing
git rebase -i origin/master
This brings up an editor where I can change all the commits from pick
to reword
. Then it will bring up editors where I can touch up my commit messages.
Summary of constraints:
- I don't want to have to change every commit to
reword
. - I don't want to manually type in every commit hash.
Is there a way to do rebase like this?