如何交互式地挑选
我已经在一个分支上黑了一段时间了,这个分支很快就不会被合并了。但无论如何,我还是想将一些提交合并到 master 中。
有没有办法获得交互式的挑选,它会显示提交及其更改,然后让我选择我真正想要挑选的内容?
I have hacked on a branch for a while, and this branch won't be merge before long. But there are some commits I'd like to merge in the master anyway.
Is there a way to get an interactive cherry-pick, that would show the commits and their changes, and then let me select the ones I'd actually like to cherry-pick?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 gitk --all 通过提交图来完成此操作,然后右键单击您希望挑选到当前分支的提交。
You can do that via the commit graph using
gitk --all
, and right clicking on the commit that you wish to cherrypick to your current branch.