cherry-pick的错误分析

在cherry-pick的时候出现以下错误提示,是对同一提交重复做cherry-pick引起的。


# On branch***

# You are currentlycherry-picking.

#   (all conflicts fixed: run "gitcommit")

#

nothing to commit,working directory clean

The previouscherry-pick is now empty, possibly due to conflict resolution.

If you wish to commitit anyway, use:

 

    git commit --allow-empty

 

Otherwise, please use'git reset'

 

分析:没有冲突输出,提示如果要提交,需要做空提交,说明这次cherry-pick的内容可能已经在这个分支上提交过了。

验证:1、查看这个哈希值所修改的文件  2、查看某个文件的修改log     3、有相同的提交注释

你可能感兴趣的:(Git)