如何在 subversion 配置文件的 auto-props 部分编写多行属性?
正确的语法是什么?
[auto-props]
*.* = svn:ignore=bin
obj
或
[auto-props]
*.* = svn:ignore=bin;obj
没有?是否可以在配置文件中写入多行属性?
What is the correct syntax?
[auto-props]
*.* = svn:ignore=bin
obj
or
[auto-props]
*.* = svn:ignore=bin;obj
or none? Is it possible to write multi-line properties in the config file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种特殊情况下,我发现实现我想要实现的目标的正确方法是在配置文件中包含以下几行:
所以我认为相同的语法(空格作为行分隔符)将适用于
auto-道具
In this particular case I found out that the right way of doing what I was trying to achieve was to include the following lines in the config file:
So I think the same syntax (space as line separator) would apply for
auto-props