hg log - 如何获取最后 5 条日志条目?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用限制参数:
hg log --limit 5
Use the limit parameter:
hg log --limit 5
在完成 Michael Markert 响应后,您可以使用简短版本。
此外,如果您愿意,您可以通过选项
-b
定义您只需要当前分支的最后一次提交。您还可以
检查您想要的分支中的最后 10 次提交
当然您可以使用
-d
进一步进行操作,如下所示:这将为您提供此日期范围内的最后 10 次提交(每个月 3 个字符) )
继续......
完整的示例和选项可在此链接中找到:
这里
In completion of the Michael Markert response you can use the shortversion
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
for check 10 last commit from the branch you want
Of course you can go further with
-d
like this :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