With git rebase, is there a way to reword commit messages in the git-rebase-todo using the default commands?
Suppose I run git rebase -i HEAD~3 pick 6b24464 foo pick a681432 Foo pick 8ccba08 foo foo # Rebase 960c384..8ccba08 onto 960c384 # # Commands: # p, pick = use commit # r, reword = use commit, but edit the commit message # e, edit = use commit, but stop for amending # s, squash = use commit, but meld into previous commit # f, fixup = like "squash", but discard this commit's log message # x, exec = run command (the rest of the line) using shell I would like to reword commit messages directly from this file, rather than editing each commit message one at a time (as per usual with reword ), like