public
Description: Simple shell script to import svn:externals into a local git-svn repository
Homepage:
Clone URL: git://github.com/andrep/git-svn-clone-externals.git
git-svn-clone-externals / git-svn-externals-update
100755 11 lines (10 sloc) 0.124 kb
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
 
for dir in *; do
if [ -d $dir ]; then
cd $dir
echo $dir
git svn fetch
git svn rebase
cd ..
    fi
done