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

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

It runs for a long while and then finally craps out 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 ever seen this problem?

link|improve this question

Can you view the svn repo with a web browser? – Rudi Jan 31 '11 at 8:03
@Rudi yes, I am able to view the repo with a browser, so the connection does get established. It just seems to die out after a while! This could be because our server is hosted by a member on my team and his connection is sketchy. – Maurizio Feb 1 '11 at 20:23
feedback

2 Answers

up vote 1 down vote accepted

I was never able to figure this out. I ended up doing an svnsync to move the entire repository down locally, and then from there I would run:

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

My thought is that the SSL connection would die out after running for a while and mess up the clone.

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

Now we are setup with pure Git happiness.

link|improve this answer
feedback

Can you do this?

git svn clone -s http://xx.xx.xx.xxx/repo/iphone/project ./project
link|improve this answer
No I can't do normal http because the SVN server is SSL access only, unfortunately. – Maurizio Jan 30 '11 at 20:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.