Manipulating svn:ignore using command line
svn:ignore is a property that must be set or get.
To check current folder ignore list (assuming you're at the folder location - hence using . below but that could be any folder name)
Example to set to ignore Thumbs.db
Or simply edit the property
To check current folder ignore list (assuming you're at the folder location - hence using . below but that could be any folder name)
svn propget svn:ignore .
Example to set to ignore Thumbs.db
svn propset svn:ignore "Thumbs.db" .
Or simply edit the property
svn propedit svn:ignore .