如何使用 SharpSvn 排除我不想通过 C# 提交的文件?
我尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需指定应提交哪些文件,然后在
SvnCommitArgs
中使用SvnDepth.Empty
即可。排除和忽略列表只是为了忽略新文件(主要是为了允许您在命令行上svn add *
,而不添加不应该在 svn 中的文件)Just specified which files should be committed, and use
SvnDepth.Empty
in yourSvnCommitArgs
. Excluding, and ignore lists are just for ignoring new files (mostly to allow you tosvn add *
on the command line, without adding files that shouldn't be in svn)