How to create ignore list of several items in SVN?
- by afsharm
Hi,
I'm creating ignore list in a windows machinge using following:
svn propset svn:ignore "bin" Fardis.Test
directory structure is:
src\
src\Fardis.Test\
src\Fardis.Test\bin\
src\Fardis.Test\obj\
I'm running that command while my currecnt dir is src. This works good but I want to add another more folder (obj) to ignore list, it fails. I tried follwings:
svn propset svn:ignore "bin obj" Fardis.Test
svn propset svn:ignore "bin, obj" Fardis.Test
svn propset svn:ignore "bin; obj" Fardis.Test
After issuing which one of them, svn status shows that none of folders bin or obj is added to ignore list.
How can I solve this?