在 hg 中合并后我可以查看已解析的文件吗?

发布于 2024-12-07 04:42:08 字数 178 浏览 0 评论 0原文

我正在使用 Mercurial,在合并时发现的一个问题是,单个开发人员在进行大量更改后很难与默认主干合并。

因此,即使开发人员手动解决冲突,总会有一个更改会错过一些相交的更改。

我想查看合并的历史记录并查看已解析的文件,以便其他开发人员可以查看它。

在 hg 中合并后我可以查看已解析的文件吗?

I'm using mercurial and one problem I found while merging was the fact that it's hard for a single developer to merge with the default trunk after a lot of changes.

So even if the developer resolves the conflicts by hand there is always a change to miss some of the intersecting changes.

I would like to take a look at the history of a merge and see the resolved files, so other developers can review it.

Can I view resolved files after a merge in hg?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

音盲 2024-12-14 04:42:08

我喜欢做的是这个工作流程:

hg pull
;; assuming I'm on development branch
hg merge -r default
hg diff  ;;do incoming changes look good
;; run tests 
hg commit -m "merged from others, lookin' good"
hg up default -C
hg merge -r development
hg diff   ;;everything look good still?
;; run tests
hg commit -m "And back to default, all tests pass"
hg push

What I like to do is this workflow:

hg pull
;; assuming I'm on development branch
hg merge -r default
hg diff  ;;do incoming changes look good
;; run tests 
hg commit -m "merged from others, lookin' good"
hg up default -C
hg merge -r development
hg diff   ;;everything look good still?
;; run tests
hg commit -m "And back to default, all tests pass"
hg push
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文