tags:

views:

45

answers:

1

Hi,

I am trying to migrate my svn repo from svn to git and it keeps on failing, it stops with the following output:

W: -empty_dir: trunk/ncontinuity2.core/extensions

When I do a git branch -a, it shows that it has not moved all the branches and indeed displays some branches that have been previously delted.

I have decide I can live without the history.

Is there anyway I can do this move manualy and recreate my branch structure in git?

I have tried git-svn and git2svn and both do not import my repo correctly, I just want to do it manually now.

Cheers

Paul

A: 

If you only want the working code, no history:

svn export <url> <other folder>
cd <other folder>
git init .
ZeissS
BUt this will not create git branches from the svn branches
dagda1
No, you are right. You have to import these manually, too.
ZeissS