svnkit:如何枚举根目录中的svn存储库?
如何使用 svnkit 枚举根目录中的 svn 存储库?
How do you use svnkit to enumerate svn repositories in a root directory?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 svnkit 枚举根目录中的 svn 存储库?
How do you use svnkit to enumerate svn repositories in a root directory?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
我认为(我一年前使用 svn kit )你必须手动列出存储库路径旁边的所有目录:
所以如果你的 repopath 是:
你应该
通过连接到它们来列出并检查所有目录(只需尝试 svn ls )
I think (I worked with svn kit 1 year ago) you have to manually list all directories next to your repository path:
So if your repopath is:
you should list
and check all directories by connecting to them (just try to svn ls)
我对 svnkit 了解不多,但考虑对 svn 文件执行递归搜索,该文件指示 svn 存储库的存在...
我忘记了 svn 存储库的结构,但查找以“.”开头的隐藏文件和文件夹。 。我认为 .svn 是一个隐藏文件夹,表示 svn 存储库?
I don't know much about svnkit but consider performing a recursive search for a svn file that indicates the presence of a svn repository...
I forget the structure of a svn repo but look for hidden files and folders that start with ".". I think .svn is a hidden folder that indicates a svn repo?