Skip to content

Instantly share code, notes, and snippets.

@ideiudicibus
Created May 30, 2011 17:08
Show Gist options
  • Save ideiudicibus/999162 to your computer and use it in GitHub Desktop.
Save ideiudicibus/999162 to your computer and use it in GitHub Desktop.
svn recursive add from local directory
#svn recursive add script to be used on current directory
#!/bin/sh
svn status | grep -v "^.[ \t]*\..*" | grep "^?" | awk '{print $2}' | xargs svn add
svn commit -m "$1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment