I just started using SVN, and I have a cache directory that I don\'t need under source control. How can I ignore the whole directory/folder with SVN?
I am using Vers
The command to ignore multiple entries is a little tricky and requires backslashes.
svn propset svn:ignore "cache\ tmp\ null\ and_so_on" .
This command will ignore anything named cache, tmp, null, and and_so_on in the current directory.
cache
tmp
null
and_so_on