git - how can I clone local svn repository? -


i unable find explanation how should specify location of existing svn repository.

in other words - should used url in

git svn clone url 

when svn repository local?

you should able succeed this:

git svn clone file:///e/svn_repo_on_e_drive 

similar svn checkout command:

svn co file:///e/svn_repo_on_e_drive 

file:// folder on current drive of executing cmd prompt, file:///d/some_folder d:\some_folder.

note: / , removed drive colon in file link on windows. file://e:/svn_repo_on_e_drivefile:///e/svn_repo_on_e_drive


Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -