Svn to git import problem using git svn clone "

When trying to import my SVN repo into Git using the following command:

git svn clone -s https://xx.xx.xx.xxx/repo/iphone/project ./project

It works for a long time, and then finally cheats with the following error:

RA layer request failed: REPORT of '/repo/!svn/vcc/default': SSL negotiation failed: SSL error: parse tlsext (https://xx.xx.xx.xxx) at /usr/local/git/libexec/git-core/git-svn line 5091

Has anyone seen this problem?

+3
source share
2 answers

I could not understand this. I ended up doing svnsyncso to move the entire repository down locally, and then from there I ran:

git svn clone -s file:///pathtolocal/repo/iphone/project ./project

My thought is that the SSL connection will die out after some time and ruin the clone.

A more detailed explanation with step-by-step instructions can be found here on our blog: Permanent SVN to Git Transition

Now we are set up with pure Git bliss.

+1
source

?

git svn clone -s http://xx.xx.xx.xxx/repo/iphone/project ./project
0

All Articles