How can I send a message using the revert --continue
(i.e. after performing a return and then resolving conflicts)?
revert --continue
trying to output a message editor (a failure on my system is another question), but if I try this:
git revert --continue -m "Reverted blah blah and resolved conflicts"
I found that git revert
has the -m
option for another purpose.
I do not see any other message related parameters in the documentation. Is there a generic option that is not listed?
source share