标签: mercurial
如果您的仓库中有变更集A,B,C,D,E且执行hg update -c D,您如何确认您的仓库目前在变更集D中处于“有效”状态?如果我们运行hg tip或hg head,HG会列出E而不是D.
hg update -c D
hg tip
hg head
答案 0 :(得分:7)
有几种方法可以解决这个问题:
hg summary
hg identify
hg log -r .
请注意hg update实际上会更改工作副本的修订版,因此您绝对不应该使用它。
hg update