Friday, October 23, 2009

updating git svn local copies

Post-release in maven, I have a lot of svn modules to update:

for d in `find . -maxdepth 1 -type d`; do cd $d; if [ -d .git/svn/trunk ] ; then echo $d && git svn rebase; fi; cd -; done
view raw gistfile1.sh hosted with ❤ by GitHub

No comments: