Written by:David Aldridge6/20/2011 4:01 PM
If you add a few files to a working copy, then remembering to add those files to the project can be something that takes a little while at the end. Using the SVN STATUS command, you can automate this:svn status | grep '?' | cut -f8 -d' ' | xargs svn add
svn status | grep '?' | cut -f8 -d' ' | xargs svn add
0 comment(s) so far...