最佳答案
我试图从 master 中挑选一个提交,并将其放到当前的生产分支中。然而,当我执行 git cherry-pick <SHA-hash>
时,我只能得到这样的消息:
# On branch prod_20110801
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
# site/test-result/
nothing added to commit but untracked files present (use "git add" to track)
The previous cherry-pick is now empty, possibly due to conflict resolution.
If you wish to commit it anyway, use:
git commit --allow-empty
Otherwise, please use 'git reset'
注意: 我尝试过重置和重置——硬 HEAD ^ ,但似乎都没有改变任何东西。
我不明白为什么这对我不管用。
任何关于如何解决这个问题的见解、建议或想法都会很有帮助 ~ !