Mercurial > hg > config
view bin/desvn.sh @ 116:2a83052a7a50
add hg defaults from http://blog.bonardo.net/2010/06/22/so-youre-about-to-use-checkin-needed
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 09 Dec 2010 14:49:14 -0800 |
parents | 3530d50c97ff |
children |
line wrap: on
line source
#!/bin/bash desvn() { if [ "$#" == "1" ] then cd $1 fi svn ls | grep '.*/$' | while read line do desvn $line done rm -rf .svn if [ "$#" == "1" ] then cd .. fi } desvn