Return to Snippet

Revision: 9051
at October 20, 2008 06:07 by narkisr


Initial Code
svnadd(){
 svn status| awk /$@/'{print $2}'| xargs svn add
}

# usage is simple
svnadd(filename)

Initial URL


Initial Description
Simple function which makes it easy to add files to svn in bash (add this to your .bashrc file).

Initial Title
Bash function to easily add files to svn

Initial Tags
svn, Bash

Initial Language
Bash