문제

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?

도움이 되었습니까?

해결책

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:

[miscellany]
### Set global-ignores to a set of whitespace-delimited globs
### which Subversion will ignore in its 'status' output, and
### while importing or adding files and directories.
global-ignores = bin obj

So I think the same syntax (space as line separator) would apply for auto-props

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top