Git 合并并保留原始提交者
当我合并其他开发人员所做的更改时,如何保留原始提交者? (类似于 git merge --preserve-comitter )
cherry-pick 几乎不错,但它似乎没有保留有关分支的信息
这是由 < 制作的历史图像code>cherry-pick
这是 merge< 制作的历史图像/代码>
how can i preserve original commiter, when i merging changes made by another developer?
(Something like git merge --preserve-comitter
)
cherry-pick
is almost good, but it seems does not preserve informations about branches
Here is an image of history made by cherry-pick
Here is an image of history made by merge
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
合并创建的历史记录准确显示您想要和需要的内容:
">
如果您想看到“简单”扁平化日志,您可以使用带有选项的 git log (-no-merges)
The history made by merge, shows exactly what you want and need:
If you want to see 'simple' flattened log, you could use git log with options (-no-merges)