有没有一种方法可以在Git的樱桃挑选中选择更改?
我希望能够在补丁级别上选择哪些更改在cherry-pick
中,就像> -p
选项一样,添加提交更改时?
I would like to be able to select which changes to include in the cherry-pick
at a patch-level much like the -p
option when adding changes to commit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用git show代替git cherry-pick命令:
然后,提交更改。
You could use git show instead of git cherry-pick command:
Then, commit your changes.