read -p 'commit message: ' msg
files=`svn status | grep ^? | awk '{ print $2 }'  | egrep "\.(py|js|html|png|jpg)$"`
if [ -n "$files" ]; then
...

Bash Simple SVN commit script

by Mark, July 26, 2011 18:48, 2 refactorings, tagged with svn, commit

I wonder if there's a way t...

B15dd469447f99c489fe08886025ddf7 Talk
#!/usr/bin/ruby -w

status, *cmd = ARGV
...

Ruby script for subversion statu...

by philippe.rathe.myopenid.com, December 17, 2007 19:01, 2 refactorings, tagged with ruby, subversion, svn, tools

For those who work with sub...

701f4a931bb6873408ffd3311aaf9457 Talk