How to create ignore list of several items in SVN?
Posted
by afsharm
on Stack Overflow
See other posts from Stack Overflow
or by afsharm
Published on 2010-06-16T09:14:12Z
Indexed on
2010/06/16
9:32 UTC
Read the original article
Hit count: 223
svn
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?
© Stack Overflow or respective owner