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

C++: Boost interprocess memory mapped file error -

python - IO.UnsupportedOperation: Not Writable -

python - Selecting distinct values from a column in Peewee -