git cherry-pick 命令,解决冲突后没有 commit 变更,再次pull 时出错

Git : You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).

解决方法:
(1)使用git status 命令查看当前状态

(2)git cherry-pick --abort 放弃git cherry-pick 变更
(3)git pull

原文地址:https://www.cnblogs.com/yuhuameng/p/11607938.html