Ignoring files and folders in an svn-controlled folder?

Posted by user246114 on Stack Overflow See other posts from Stack Overflow or by user246114
Published on 2010-04-30T10:48:57Z Indexed on 2010/04/30 11:17 UTC
Read the original article Hit count: 134

Filed under:

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

© Stack Overflow or respective owner

Related posts about svn