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_drive
→ file:///e/svn_repo_on_e_drive
Comments
Post a Comment