/ Published in: Bash
Simple function which makes it easy to add files to svn in bash (add this to your .bashrc file).
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
svnadd(){ svn status| awk /$@/'{print $2}'| xargs svn add } # usage is simple svnadd(filename)