michael nesterenko
michael nesterenko

Reputation: 14449

Clone SVN repository locally

I try to clone svn repository locally with following command in cygwin:

git svn clone file:///J:/<path_to_repository>/svn_repo -s .

and I get following error:

svn: E235000: In file '/usr/src/subversion/subversion-1.7.8-2/src/subversion/subversion/libsvn_subr/dirent_uri.c' line 2315: assertion failed (svn_uri_is_canonical(url, pool))

what is wrong with my url?

UPD

$ git svn --version
git-svn version 1.7.9 (svn 1.7.8)

Upvotes: 0

Views: 653

Answers (1)

cforbish
cforbish

Reputation: 8819

If you are in cygwin bash, you would need to modify the J: to cygdrive/j.

Upvotes: 1

Related Questions