Mercurial日志接口

发布于 2024-09-12 09:55:32 字数 208 浏览 2 评论 0原文

我一直在浏览 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

ˉ厌 2024-09-19 09:55:32

使用 hg log -r:

Use hg log -r:

请叫√我孤独 2024-09-19 09:55:32

只需使用-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.

蝶…霜飞 2024-09-19 09:55:32
hg log | tail -r
hg log | tail -r
錯遇了你 2024-09-19 09:55:32

对我来说,@tonfa 答案的第二部分是正确的,在所有情况下都很有用(您可以使用 / 等进行搜索......)

如果您想避免滚动,还可以将输出通过管道传输到寻呼机(例如 hg log | less)或使用 寻呼机扩展

到目前为止,似乎如果您希望寻呼机使用您的别名,您必须在 .hgrc 上具体说明(对于 hg help 来说也是如此,esencial)

示例

[extensions]
pager =  

[pager]
pager = LESS='FRX' less
attend = help logg

[alias]
logg = log -G --template '\x1B[33m{node|short}\x1B[0m | {date|isodatesec} | \x1B[32m{author|user}\x1B[0m: {desc|strip|firstline}\n'

For me second part of @tonfa's answer is the right one, useful in all cases (you can search with /, etc...)

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.

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

[extensions]
pager =  

[pager]
pager = LESS='FRX' less
attend = help logg

[alias]
logg = log -G --template '\x1B[33m{node|short}\x1B[0m | {date|isodatesec} | \x1B[32m{author|user}\x1B[0m: {desc|strip|firstline}\n'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文