Adding all new files recursively to Subversion
Sometimes you want to add a lot of new files to a subversion repository. An smart solution can be found on this post:
svn status | grep "^?" | awk '{print $2}' | xargs svn add
That will add the new files to the repository in just one command, not looping around for each file. Cool!
English
Español