Ignoring files and folders in an svn-controlled folder?
- by user246114
Hi,
I'm using svn on a mac. I'm trying to add an eclipse project to a repo. I want to ignore all .class files, and a few subfolders. I tried the following:
svn propset svn:ignore *.class .
property 'svn:ignore' set on '.'
svn propset svn:ignore eclipse/.metadata/ .
property 'svn:ignore' set on '.'
so I think it's working, but then I do:
svn add toplevelfolder
and it still adds all .class files and folders I tried to ignore above. What's the right way to do this?
Thanks