如何使用 SharpSvn 排除我不想通过 C# 提交的文件?

发布于 2024-10-16 21:50:19 字数 54 浏览 6 评论 0原文

我尝试在 svn 属性和全局忽略列表中排除,但都失败了,有什么方法可以通过 C# 进行编码吗?

i have tried to exclude in svn property and global-ignore list but all failed, is there any way to do this in coding via c#?

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

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

发布评论

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

评论(1

饭团 2024-10-23 21:50:19

只需指定应提交哪些文件,然后在 SvnCommitArgs 中使用 SvnDepth.Empty 即可。排除和忽略列表只是为了忽略新文件(主要是为了允许您在命令行上 svn add * ,而不添加不应该在 svn 中的文件)

Just specified which files should be committed, and use SvnDepth.Empty in your SvnCommitArgs. Excluding, and ignore lists are just for ignoring new files (mostly to allow you to svn add * on the command line, without adding files that shouldn't be in svn)

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