How to do git cherry-pick --continue in SourceTree?
问题 How do I continue cherry picking using SourceTree after I resolved confilcts. If I am doing rebase and I get conflicts then after resolving them when I click commit SourceTree lets me continue that rebase. But how to continue cherry pick operation? 回答1: cherry-pick effectively applies the changes from commit A onto the working tree and makes a commit. This means if you get any conflicts during cherry-pick ing you just need to commit after resolving them to finish the cherry-pick . EDIT Edward