Mercurial日志接口
我一直在浏览 hginit.com 上的教程,但我发现 hg log
功能有一个相当不方便的方面。基本上,当我输入它时,我会在顶部看到最新的更改,在底部看到最旧的更改。但这很烦人,因为大多数时候,您希望看到最新的修订版。所以...假设我有 100 个变更集,我想查看第 98 个变更集。我要一直向上滚动吗?或者有没有办法让 Hg (Mercurial) 以相反的方式列出更改?
I've been going through the tutorial at hginit.com, but I've found a rather inconvenient aspect of the hg log
feature. Basically, when I type it, I get the newest changes on top, and the oldest at the bottom. But this is simply annoying, as most of the time, you want to see the newest revisions. So... say I have 100 changesets, and I want to have a look over the 98th one. Do I scroll all the way up? Or is there a way to make Hg (Mercurial) list the changes the other way around?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 hg log -r:
Use
hg log -r:
只需使用
-l/--limit
限制hg log
的显示即可。例如,
hg log -l 100
仅显示 100 个更改。如果您想避免滚动,还可以通过管道将输出传输到寻呼机(例如
hg log | less
)或使用 寻呼机扩展。Just limit the display of
hg log
with-l/--limit
.E.g.
hg log -l 100
to only display 100 changes.If you want to avoid scrolling, you can also pipe the output to a pager (e.g.
hg log | less
) or use the pager extension.对我来说,@tonfa 答案的第二部分是正确的,在所有情况下都很有用(您可以使用 / 等进行搜索......)
到目前为止,似乎如果您希望寻呼机使用您的别名,您必须在 .hgrc 上具体说明(对于 hg help 来说也是如此,esencial)
示例
For me second part of @tonfa's answer is the right one, useful in all cases (you can search with /, etc...)
By now, seems if you want the pager to work with your alias you must say specifically on your .hgrc (the same for hg help, esencial)
Example