Doug Bryant

Tech thoughts and notes

Quick Script for Adding New Svn Files to Repository

svn status | grep ? | awk ‘{print $2}’ | xargs svn add

This is on a FreeBSD box. I have noticed xargs on linux is slightly different – on linux try changing the xargs line to codeprexargs -i -t svn add {}/pre/code