Want to add all new SVN files recursively?
Use command line with svn and grep.
svn status | grep "^\?" | awk '{print $2}' | xargs svn add
Plus check out this handy SVN cheatsheet.
Advertisements
Want to add all new SVN files recursively?
Use command line with svn and grep.
svn status | grep "^\?" | awk '{print $2}' | xargs svn add
Plus check out this handy SVN cheatsheet.