hg log - 如何获取最后 5 条日志条目?

发布于 2024-11-26 14:35:35 字数 146 浏览 1 评论 0原文

我有一个 Mercurial 项目,有数百次提交。

当我想查看最近的条目时,我会输入内容

hg log

,然后等待所有内容打印出来,然后滚动回顶部。

如何只打印最近 5 个条目?

I have a Mercurial project that has hundreds of commits.

When I want to look at the most recent entries I type

hg log

and then wait for everything to print out and then scroll back to the top.

How do I print out just the 5 most-recent entries?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

难忘№最初的完美 2024-12-03 14:35:36

使用限制参数:hg log --limit 5

Use the limit parameter: hg log --limit 5

一个人练习一个人 2024-12-03 14:35:36

在完成 Michael Markert 响应后,您可以使用简短版本。

hg log -l 10

此外,如果您愿意,您可以通过选项 -b 定义您只需要当前分支的最后一次提交。

您还可以

hg log -l 10 -b [your branch]

检查您想要的分支中的最后 10 次提交

当然您可以使用 -d 进一步进行操作,如下所示:

hg log -l 1 -d "feb 2015 to apr 2015"

这将为您提供此日期范围内的最后 10 次提交(每个月 3 个字符) )

继续......

完整的示例和选项可在此链接中找到:
这里

In completion of the Michael Markert response you can use the shortversion

hg log -l 10

In addition if you want you can define via the option -b that you want only last commit from the current branch.

You can also do

hg log -l 10 -b [your branch]

for check 10 last commit from the branch you want

Of course you can go further with -d like this :

hg log -l 1 -d "feb 2015 to apr 2015"

This will give you last 10 commits within this date range (3 char for each months)

And goes on..

Full example and option are available in this link :
Here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文