使用Mercurial,我该如何查看尚未推送的更改?

5
我习惯使用git,可以运行gitk并获得以下内容: gitk showing the difference between the local and remote branches 在这里,您可以看到有几个更改需要推送到远程分支。或者,我可以使用git log --decorate,输出将是:
b8c2926... (refs/heads/next) Update instructions
6d9f914... Add a first go at generic x compiling
49a6dac... (refs/remotes/github/next) Ignore temp files

Mercurial有类似的东西吗?
1个回答

18

hg outgoing - 将显示等待推送到远程仓库的变更集。

hg incoming - 显示远程仓库中的新变更集。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接