I am trying to script some git operations which involves some rebasing/cherry-picking/etc.
Is there a way to resolve a conflict without having to run commands such as:
git rebase --continue
git cherry-pick --continue
git merge --continue
I am trying to avoid the editor ever being executed when git wants a commit message.
Perhaps there is a way to tell git that things have been resolved and pass in a default commit message if needed?