You can use git commit -m '$msg' to commit the changes, and then issue the "Continue the following steps" command:
For git rebase :
git commit -m '$msg' git rebase --skip
For git cherry_pick :
git commit -m '$msg' # if you are cherry-picking several commits at once, # this will skip the current (conflicting) one, and proceed with the remaining ones : git reset git cherry-pick --continue
For git merge :
There is no git merge --continue . In case of conflict, you just fix the conflict, then commit . So git commit -m '$msg' will do this.
Legec
source share