I've been trying to ignore particular files and directories in order to prevent local modifications being submitted to repository.
The problem I am having is that once a file has been committed to a repository, you cannot then ignore it.
svn propset svn:ignore '*' ./stuff
If the files in the ./stuff folder have already been added and committed, they are not ignored for future commits. I find I often want to ignore particular files at the beginning of a project but cannot as these directories are not working copies so i'm doing
svn add *
svn revert fileIWantToIgnore.ext
svn propset svn:ignore 'fileIWantToIgnore.ext' .
This is a bit of a laborious process. What would be your suggestions?