I have a project in SVN and I tried to clone it using git-svn. I followed suit in git-svn docs .
git svn clone svn+ssh://host/path/trunk project_name
The command completed without an msg error message, but the cloned project does not contain all directories as a project in SVN.
At the top level, my SVN project has ...
$ svn ls svn+ssh://host/path/trunk README Rakefile app/ config/ db/ doc/ lib/ log/ public/ script/ test/ tmp/ vendor/
After cloning locally, I have ...
README Rakefile app config doc public script test
There are also no sub-dirs.
UPDATE
Experimentally cloned another project on the same host. It seemed to be working fine. What is so special about this? I can't think of anything except that I just created it and imported it to SVN before cloning. Will it make a difference?
I tried to create a completely new project by importing it into SVN and cloning. Got the same result, the same missing drives.
Ethan source share