Git horror

time to read 2 min | 226 words

I am trying to do something that I think is very simple, clone an SVN repository to a local Git repository.

Unfortunately, just about anything that I do end up in one error or another.

E:\rt\rt>git --version
git version 1.6.4.msysgit.0

E:\rt\rt>cd..

E:\rt>git svn clone https://rhino-tools.svn.sourceforge.net/svnroot/rhino-tools rt.git
Initialized empty Git repository in e:/rt/rt.git/.git/
RA layer request failed: PROPFIND request failed on '/svnroot/rhino-tools': PROP
FIND of '/svnroot/rhino-tools': could not connect to server (https://rhino-tools
.svn.sourceforge.net) at C:\Program Files\Git/libexec/git-core/git-svn line 1699

E:\rt>svn list https://rhino-tools.svn.sourceforge.net/svnroot/rhino-tools
BDSLiB/
branches/
contrib/
deprecated/
experiments/
tags/
trunk/

I even tried doing this on my Mac, which worked, but only until revision 2085, after which it refuses to do anything.

I know that I haven’t done much with Git so far, but I don’t think that I am doing something that wrong.