Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何在 Git 中将特定提交从一个分支合并到另一个分支?
我是 git 的新手。有一个问题:如果我想从一个分支提交到另一个分支,我应该使用什么命令?提前谢谢。
使用樱桃采摘,根据:
http://www.kernel.org/pub/software/scm/git/docs/git-cherry-pick.html
就像是: git cherry-pick 575f9b1a75673067830bb224ee09b201923093a6
git cherry-pick 575f9b1a75673067830bb224ee09b201923093a6
或者
git cherry-pick my-branch(在我的分支上获得最高提交)。
git cherry-pick my-branch