/ Published in: Bash
URL: http://www.phillipharrington.com/
A quick script to add all of your unversioned files. Good when working in bulk.
Expand |
Embed | Plain Text
svn status --no-ignore | grep '^\?' | sed 's/^\? //' | xargs svn add
Comments
Subscribe to comments
You need to login to post a comment.

And really, you could xargs into anything - subversion or otherwise.