每当我需要使用hg histedit
时,我都会这样做:
Hg histedit -r {lowest level draft number}
这个过程需要花费相当多的时间才能看起来很常见。是否有这样的捷径,可能是hg histedit -s draft
?
答案 0 :(得分:1)
您可以使用mercurial的revsets来实现这一目标!要查找第一个草稿变更集的转数:
hg log -r "first(draft() and ancestors(tip))"
我添加了ancestors(tip)
子句,因为我的repo目前在几个分支上有草稿更改:)
。
我相信在乌龟中你可以使用revsets进行搜索,但我不会经常使用tortoisehg。
某些命令可以接受revsets作为--rev
开关的参数,但我不认为它是通用的。