我知道我可以hg tip
用来检查本地存储库的最新版本。但我不知道我已经签出并正在处理哪个版本,所以我需要检查它。我试图谷歌它,但没有找到正确的命令..
问问题
154 次
2 回答
0
命令是:
hg parents [-r REV] [FILE]
show the parents of the working directory or revision
您可以运行hg help
以获取可用命令的列表。
它喜欢运行hg summary
,其中包括父级:
$ hg summary --remote
parent: 1967:3ffa3a76de21 tip
removed all source code
branch: new_one
commit: (clean)
update: (current)
remote: 1 or more incoming
于 2013-06-06T06:16:51.130 回答
0
您可以使用hg id
以检测存储库的活动变更集
>hg id -nibt
ad4dd1a9ba66 38 default tip
如果变更集在更新时更改
>hg up -r 35
4 files updated, 0 files merged, 0 files removed, 0 files unresolved
重新检查身份证
>hg id -nibt
8a72023d18d0 35 default
于 2013-06-06T09:18:30.253 回答