Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果您的仓库中有变更集 A、B、C、D、E 并且您执行hg update -c D,您如何确认您的仓库当前在变更集 D 中处于“活动状态”?如果我们运行hg tipor hg head,HG 列出 E 而不是 D。
hg update -c D
hg tip
hg head
有几种方法可以找出这一点:
hg summary
hg identify
hg log -r .
请注意,hg update实际上更改了工作副本的修订版,因此您绝对不应该使用它。
hg update