RE: Issue #2243 still exists with svn 1.6.17

2012-06-30 Thread Bert Huijben
ag 30 juni 2012 15:26 To: Bert Huijben Cc: users@subversion.apache.org Subject: Re: Issue #2243 still exists with svn 1.6.17 This leaves me with a bit of a conundrum. Our IDE would normally automatically call "svn add" when you add a new file to the solution. It is possible that this

Re: Issue #2243 still exists with svn 1.6.17

2012-06-30 Thread Alan McGovern
This leaves me with a bit of a conundrum. Our IDE would normally automatically call "svn add" when you add a new file to the solution. It is possible that this file could be in the svn ignore list. The result is that by attempting to make the developers life easy we will instead always add files

RE: Issue #2243 still exists with svn 1.6.17

2012-06-30 Thread Bert Huijben
The 'no_ignore' flag is only used for recursive targets. Explicitly passed targets (such as via 'svn add *') are always processed. If you would like to use the ignore feature you should call 'svn add --force .', or the api equivalent of that. This adds the directory and everything below tha