用于在 Subversion 存储库中搜索文件的 GUI 工具

发布于 2024-11-09 04:46:20 字数 247 浏览 0 评论 0原文

您好,是否有任何图形工具可以根据文件名或其内容在 SVN 存储库中搜索文件?我的意思是基于 GUI 的东西,所以 grep 不是一个选项。我指的是 Microsoft Visual Source Safe 中提供的文件搜索选项之类的内容。我目前正在使用 Tortoise svn 和 Ankh SVN for Visual Studio 2010。但据我所知,它们都没有搜索文件功能。

提前致谢。

Hi is there any graphical tool for searching for a file in a a SVN Repository based on the file name or its contents? I mean something GUI based so grep is not an option. I'm referring to something like the file search option you get in Microsoft Visual Source Safe. I'm currently using tortoise svn and Ankh SVN for Visual Studio 2010. But none of them have the search for file feature as far as I know.

Thanks in advance.

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

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

发布评论

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

评论(3

黑寡妇 2024-11-16 04:46:20

您将得到一个 Web GUI 以及一个服务器端索引器。

Altassian 的 FishEye 很好(不是免费的),但也有svn-searchsvnqueryopengrok

What you'll get is a web GUI to dot his along with a server-side indexer.

FishEye from Altassian is good (not free), but there's also svn-search and svnquery and opengrok.

余罪 2024-11-16 04:46:20

如果您只想使用路径/文件名进行搜索,TortoiseSVN Log 非常有能力。

If you want to search with just path / filename, TortoiseSVN Log is pretty capable.

断爱 2024-11-16 04:46:20

仅供参考,从 http://svnquery.tigris.org/ 下载 SvnQuery 和 SvnFind 后,您可以包含 SvnQuery。在 C# 项目中添加 .dll 并编写您自己的 GUI:

using System.Collections.Generic;
using SvnQuery;
//...
    public string wad = @"C:\Data\Download\SvnQuery\App\svn.idx";
    public ICollection<string> GetSvnFolderList()
    {
        string search = "/";
        var idx = new SvnQuery.Index(wad);
        var res = idx.Query(search);
        IDictionary<string, int> lst = new Dictionary<string, int>();
        foreach (var item in res.Hits)
        {
            string folder = item.Path.Substring(0, item.Path.LastIndexOf("/"));
            lst[folder] = 1;
        }
        return lst.Keys;
    }

FYI, After you download SvnQuery and SvnFind from http://svnquery.tigris.org/ you can include SvnQuery.dll in a C# project and write your own GUI:

using System.Collections.Generic;
using SvnQuery;
//...
    public string wad = @"C:\Data\Download\SvnQuery\App\svn.idx";
    public ICollection<string> GetSvnFolderList()
    {
        string search = "/";
        var idx = new SvnQuery.Index(wad);
        var res = idx.Query(search);
        IDictionary<string, int> lst = new Dictionary<string, int>();
        foreach (var item in res.Hits)
        {
            string folder = item.Path.Substring(0, item.Path.LastIndexOf("/"));
            lst[folder] = 1;
        }
        return lst.Keys;
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文