My directory structure looks like the following:
project/
app1/
app2/
settings.py
From within the project
directory, I ran svn propedit svn:ignore .
This only ignore files from within project director excluding its sub-directories. I can run the svn ignore again from within each of the folder and it will work. Is there an internal svn command or option which can recursively do it for me or should I resort to a script to perform the ignore within each sub-folders of my project?
I've set my ignored files to be:
*.pyc
*.swp
However, whenever I do a svn status
, I still see the above files. Is there a way to tell svn status
to hide ignored files recursively?