使用Mercurial,我怎样才能看到还有哪些变化?

时间:2009-04-26 14:35:11

标签: mercurial

我习惯了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 个答案:

答案 0 :(得分:18)

hg outgoing - 将显示等待推送到远程存储库的更改集。

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