Multi-Line svn:ignore
Published on 10 Mar 2004Tags #Subversion
The property svn:ignore
may contain new-line separated patterns which describe filenames to ignore for repository actions. Specifying a single pattern is rather straight forward.
svn propset [-R] svn:ignore '*.o' .
So far the only known reliable method to create a new-line separated list on a bash command-line is:
svn propset [-R] svn:ignore "$(echo '*.o'; echo '*.a')" .