使用 SharpSvn 检索最后 n 条日志消息
有人如何使用 SharpSvn 从 SVN 检索最后 n 条日志消息吗?我一直在使用 SvnRevisionRange 参数调用 GetLog,但实际上只需要 20 条最新消息,而我无法仅预测日期。谢谢!
Does anyone how to retrieve the last n log messages from SVN using SharpSvn? I’ve been calling GetLog with an SvnRevisionRange argument but really just need the 20 most recent messages which I can’t predict on date alone. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想你想要 SvnLogArgs.Limit 。
You want SvnLogArgs.Limit I think.
如果你想获得最后 N 次修订。您可以通过组合 LIMIT 和 RANGE 来检索它们。
If you wish to get the last N revisions. You can retreive them by combining LIMIT and RANGE.