I have a directory in my application called /admin/debug/output that contains a directory and a bunch of JavaScript files. I want to ignore them completely from appearing when doing an svn st before commiting code.
I used the propset commant like this to ignore it, however it seems to have had no effect:
svn propset svn:ignore admin/debug/output/ . ( I ran this from the root )
property 'svn:ignore' set on '.'
Why does SVN still recognise this when doing an svn st?
SVN handles ignored directories only for immediate subdirectories and files. Thus, you should set this property for the parent directory, i.e.
Make sure that output is without trailing slash.
NOTE
If the folder is already under version control, then the following sequence of operation should be applied:
if you have old SVN (<1.5) do workaround:
OR
You can leave the folder and mark as ignored all files in it: