Git rerere provides for reuse of previous conflict resolutions during rebase, and can even stage the resolved files by setting rerere.autoupdate = True
(as detailed in another question). However, even if all conflicts are resolved and all files staged, I still have to run git rebase --continue
to continue the rebase operation.
How can I automatically continue if rerere
has resolved all conflicts and staged all changes?