Archive for the ‘svn’ Category

Using awk to add new files to svn

Friday, July 17th, 2009
svn add `svn status | grep "^?" | awk '{print $2 }'`

you can also use grep -v to exclude specific files

svn add `svn status | grep "^?" | awk '{print $2 }' | grep -v prefs.inc.php`

SquirrelMail SVN command

Tuesday, November 6th, 2007
svn co https://squirrelmail.svn.sourceforge.net/svnroot/squirrelmail/branches/SM-1_4-STABLE/squirrelmail squirrelmail