如何在 C# 中以编程方式获取最新的前“n”个从 svn 存储库提交消息

发布于 2024-11-02 18:13:12 字数 154 浏览 4 评论 0原文

我想建立一个网站,它只显示最新的(按日期、修订版?)“n”提交日志以及其他相关信息。

最好的方法是什么?我开始快速浏览 SharpSvn,但 GET 似乎基于修订范围而不是日期。

我想要一个基于 C# 的 .Net 的简单示例,该示例基于任何可用的库来完成工作。

I'd like to build a site which simply displays the top latest (by date, revision?) "n" commit logs plus other associated info.

What's the best way to do this? I started having a quick look at SharpSvn, but the GET seems to be based on Revision ranges rather than date.

I'd like a simple example for .Net in c# based on any available library which gets the job done.

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

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

发布评论

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

评论(1

柠北森屋 2024-11-09 18:13:12

既然你提到使用 SharpSVN,我碰巧在 BuildMaster 中写了这个:

private static IList<string> GetLatestCommitMessages(Uri repository, int count)
{
    using (var client = new SvnClient())
    {
        System.Collections.ObjectModel.Collection<SvnLogEventArgs> logEntries;
        var args = new SvnLogArgs()
        {
            Limit = count
        };

        client.GetLog(repository, args, out logEntries);

        return logEntries.Select(log => log.LogMessage).ToList();
    }
}

Since you mentioned using SharpSVN, I happen to have written this in BuildMaster:

private static IList<string> GetLatestCommitMessages(Uri repository, int count)
{
    using (var client = new SvnClient())
    {
        System.Collections.ObjectModel.Collection<SvnLogEventArgs> logEntries;
        var args = new SvnLogArgs()
        {
            Limit = count
        };

        client.GetLog(repository, args, out logEntries);

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