Git:如何将两个标签之间所做的更改合并到另一个分支?
我正在尝试在我们自己的 Moodle 存储库分支上管理我们的 Moodle 实例。我检查了分支“MOODLE_19_STABLE”的标签“v1.9.11”,然后将其复制到新分支“COE”,我在其中添加了自定义主题等。
现在标签“v1.9.12”存在,我想要将直到该标签的提交合并到我的“COE”分支中(而不是之后的提交)。
I'm trying to manage our Moodle instance on our own branch of the Moodle repo. I checked out tag "v1.9.11" of branch "MOODLE_19_STABLE", then copied that to a new branch "COE", where I've added in our custom theme, etc.
Now that tag "v1.9.12" exists, I want to merge the commits up to that tag into my "COE" branch (and not the commits that came after).
Can I do this with something like git cherry-pick?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将合并 v1.9.12 之前(包括 v1.9.12)的所有提交,此后不会合并任何内容。
will merge all the commits up to, and including,
v1.9.12
, and nothing after that.