Reputation: 434
I am working in a project with svn and have a file ".svnignore" with a list of folders to ignore.
When i run the command "svn add *", svn add all the files including the folders in the ".svnignore".
There is better way for add all the files in console except the folders inside the ".svnignore" list?
Upvotes: 0
Views: 40
Reputation: 2671
Subversion do not use .svnignore file. It use svn:ignore properties: http://svnbook.red-bean.com/en/1.7/svn.advanced.props.special.ignore.html
Upvotes: 1