vote up 8 vote down star
8

I read git manual, FAQ, Git - SVN crash course, etc. and they all explain this and that, but nowhere can you find a simple instruction like:

SVN repository in: svn://myserver/path/to/svn/repos Git repository in: git://myserver/path/to/git/repos

git-do-the-magic-svn-import-with-history svn://myserver/path/to/svn/repos git://myserver/path/to/git/repos

I don't expect it to be that simple, and I don't expect it to be a single command. But I do expect it not to try to explain anything - just to say what steps to take given this example.

flag

7 Answers

vote up 10 vote down check

Magic:

$ git-svn clone http://svn/repo/here/trunk

Git and SVN operate very differently. You need to learn Git, and if you want to track changes from SVN upstream, you need to learn git-svn. The git-svn man page has a good examples section:

$ man git-svn
link|flag
1  
I want to migrate my own repos. from SVN to Git. One time only. After I do it, I'll shut down SVN server and, hopefully, never start it again. BTw, tried your command: Can't locate Error.pm in @INC (@INC contains: /usr/lib/perl5/site_perl/5.8.8 ...etc. Looks like Git in Slackware 12.1 is broken. – Milan Babuškov Sep 17 '08 at 2:12
Use CPAN to install the Error module, I think. You can use git-svn for a one-time migration. – emk Sep 17 '08 at 13:07
@Milan: I get this error when the subversion perl bindings are not installed. – Denis Bueno Sep 17 '08 at 17:06
vote up 1 vote down

See the official git-svn manpage. In particular, look under "Basic Examples":

Tracking and contributing to an entire Subversion-managed project (complete with a trunk, tags and branches):

# Clone a repo (like git clone):
    git svn clone http://svn.foo.org/project -T trunk -b branches -t tags
link|flag
vote up 4 vote down

I suggest getting comfortable with Git before trying to use git-svn constantly (i.e. keeping SVN as the centralized repo and using Git locally).

However for a simple migration with all the history, here are the few simple steps:

initialize the local repo

mkdir project
cd project
git svn init http://svn.url

mark how far back you want to start importing revisions

git svn fetch -r42

(or just "git svn fetch" for all revs)

Actually fetch everything since then

git svn rebase

You can check the result of the import with Gitk (not sure if this works on Windows... works on OSX and Linux)

gitk

When you've got your svn repo cloned locally, you may want to push it to a centralized git repo for easier collaboration. First create your empty remote repo (maybe on GitHub?)

git remote add origin git@github.com:user/project-name.git

Then optionally sync your main branch so the pull operation will automatically merge the remote master with your local master, when both contain new stuff:

git config branch.master.remote origin
git config branch.master.merge refs/heads/master

After that, you may be interested in tyring out my very own git_remote_branch tool, which helps dealing with remote branches :-)

First explanatory post

Follow-up for the most recent version

link|flag
Huge Thanks for this post it's been extremely useful in helping me migrate my SVN repo's to git. – Naz 19 hours ago
vote up 1 vote down

could someone also tag this with git-svn as well, since it belongs there too

link|flag
Sure, it's done. – Milan Babuškov Sep 18 '08 at 10:49
vote up 1 vote down

GitHub now has a feature to import from an SVN repository. I never tried it, though.

link|flag
vote up 1 vote down

As another aside, the git-stash command is a godsend when trying to git with git-svn dcommits.

A typical process:

  1. set up git repo
  2. do some work on different files
  3. decide to check some of the work in, using git
  4. decide to svn-dcommit
  5. get the dreaded "cannot commit with a dirty index" error.

The solution (requires git 1.5.3+):

git stash; git svn dcommit ; git stash apply
link|flag

Your Answer

Get an OpenID
or

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