I ran an interactive rebase up to commit abcdef.
git rebase -i abcdef In the editor - Vim I changed all pick hash lines to
reword hash PREFIX: Original commit message using this vim command
%s/pick \(\w\{7}\)/reword \1 PREFIX:/
but then git goes on to prompt me to edit the message for every commit. Is there a simple way to batch this process?