Im using SVN at the moment on Mac for iPhone development,and I have accidentally added the build directory to source control, so I thought I would look up how to add folders to the ignore list, and I did find an article on how to do that.
so I ran the command: svn propedit svn:ignore ./build as specified here: http://svnbook.red-bean.com/en/1.1/ch07s02.html
Then pico came up as the editor, and I added * to the first and only line of the file.
Then I hit save, but then I run into a step that no-one seems to talk about, the file name of the file that I just edited… what is it?
I have tried ignore.txt, ignore, and others, but everthing I try doesnt add the build directory (and its sub dirs/files) to the ignore list.
How do I do this?
you should set that property to the directory you want the patterns apply to, most likely:
.to quote the doc:
so, the command you are after is:
your editor should open up (pointing at a temporary file somewhere). you can now change the patterns (eg, add a new line with
buildon it) and then save it.Only unversioned files can be ignored, to remove the added directoy from the repository, after which the ignoring can start, run: