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 xargs -i -t svn add {}
0 comments