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++ - llvm function pass ReplaceInstWithInst malloc -

java.lang.NoClassDefFoundError When Creating New Android Project -

Decoding a Python 2 `tempfile` with python-future -