I'm fighting with svn at the moment.
My situation is simple :
I have a working copy, let's call this folder wc.
In my working copy, I want to put in a lot of folders, but I want some of them, and some of the files inside them not to be added (ignored so).
I tried to use propset on . to ignore a single file (test.js), but here is the problem :
- When I use
svn add ., nothing is added. - When I use
svn add *, everything is added. It's like usingproset svn:ignoreis useless (even though I got the message saying the prop was set). - I made a
mainfolder, and tried to put all inside, propsetting it, and did the two above commands : same result. I also tried to version the folder and propsetting it, then trying to add the subfolders, I get the same problem.
- Edit : I tried
svn propset svn:ignore "*lolo*" mainand thensvn add --force main, it works halfway, asmain/lolois ignored,main/totololototois ignored, butmain/baba/lolois not ignored.
- Edit : I tried