#! /bin/sh mkdir test.$$ cd test.$$ svnadmin create svnrepo svn co file://$PWD/svnrepo svnco cd svnco echo content > file svn add file svn commit -m "added file" cd ../ # This triggers the bug. git-svn clone svn+ssh://localhost/$PWD/svnrepo git-svn-co # while this doesn't # git-svn clone file://localhost/$PWD/svnrepo git-svn-co cd git-svn-co mkdir newdir echo othercontent > newdir/newfile git add newdir/newfile git commit -m "newdir" git-svn dcommit