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.

link|improve this question
4  
why is this community wiki? – Casey Oct 19 '10 at 19:52
15  
@Casey: because I've got sick and tired of StackOverflow zealots down-voting my questions just because I did not make them community wiki. Not that I'm sure it would happen to this question in particular, but I already have 7k points, so I don't really care anymore. – Milan Babuškov Oct 19 '10 at 20:12
5  
I agree CW is the stupidest feature on this site. But really there is nothing subjective about this question, and not all of us have 7k in rep :( – Casey Feb 23 '11 at 2:14
4  
best question ever. – andho Apr 4 '11 at 18:36
4  
Actually, I think you have every right to expect it to be that simple. – Tim Long Dec 16 '11 at 18:47
feedback

13 Answers

up vote 67 down vote accepted

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:

$ git svn --help
link|improve this answer
9  
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
2  
On Ubuntu, the command is git svn clone... (no "-"). – nico_ekito Jan 23 at 8:59
2  
As well as OS X, no "-" needed. – ZacharyP Jan 25 at 16:10
4  
The answer from @Casey answers the original question much better. – Hellfire Feb 26 at 14:58
show 2 more comments
feedback

Create a users file (i.e. users.txt) for mapping SVN users to GIT:

user1 = First Last Name <email@address.com>
user2 = First Last Name <email@address.com>
...

SVN will stop if it finds a missing SVN user not in the file. But after that you can update the file and pick-up where you left off.

Now pull the SVN data from the repo:

git svn clone --stdlayout --no-metadata -A users.txt svn://hostname/path dest_dir-tmp

This command will create a new git repo in dest_dir-tmp and start pulling the SVN repo. Note that the "--stdlayout" flag implies you have the common "trunk/branches/tags" svn layout.

If a user name is not found, update your users.txt file then:

cd dest_dir-tmp
git svn fetch

When completed, git will checkout the SVN trunk into a new branch. Any other branches are setup as remotes. You can view the other SVN branches with:

git branch -r

If you want to keep other remote branches in your repo, you want to create a local branch for each one manually. If you don't do this, the branches won't get cloned in the final step.

git checkout -b local_branch remote_branch
# it's ok if local_branch and remote_branch are the same name

Tags are imported as branches. You have to create a local branch, make a tag and delete the branch to have them as tags in git. To do it with tag "v1":

git checkout -b tag_v1 remotes/tags/v1
git checkout master
git tag v1 tag_v1
git branch -D tag_v1

Clone your GIT-SVN repo into a clean git repo:

git clone dest_dir-tmp dest_dir
rm -rf dest_dir-tmp

Finally, remove the remote from your clean git repo that points to the now deleted temp repo:

git remote rm origin
link|improve this answer
1  
Thank you very much for this! I did all the basic import steps and then noticed that all my branches were remotes and wasn't sure what to do to resolve it. – latortuga Dec 2 '10 at 15:01
The first "cd dest_dir" should be "cd dest_dir-tmp" (I'd edit if I had rep). – Bryan Petty Apr 23 '11 at 19:16
@bryan, fixed it – Casey May 14 '11 at 1:32
2  
awesome instruction. it deserves to be the answer to read number one. vote +1 – Pavel C. Jul 22 '11 at 18:46
3  
This blog post by Eelke is a great cross-reference for the answer above. blokspeed.net/blog/2010/09/converting-from-subversion-to-git – Kurt Mar 6 at 16:13
show 4 more comments
feedback

Cleanly Migrate Your Subversion Repository To a Git Repository. First you have to create a file that maps your Subversion commit author names to Git commiters, say ~/authors.txt:

jmaddox = Jon Maddox <jon@gmail.com>
bigpappa = Brian Biggs <bigpappa@gmail.com>

Then you can download the Subversion data into a Git repository:

mkdir repo && cd repo
git svn init http://subversion/repo --no-metadata
git config svn.authorsfile ~/authors.txt
git svn fetch

If you’re on a Mac, you can get git-svn from MacPorts by installing git-core +svn.

link|improve this answer
Link does not work. Someone please update this. – WarmWaffles Sep 21 '10 at 5:28
1  
webarchive link is also broken: I guess this is the article: jonmaddox.com/2008/03/05/… – Teun D Sep 24 '10 at 7:15
2  
Link now works :) – Pilgrim Jul 20 '11 at 7:38
feedback

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|improve this answer
Huge Thanks for this post it's been extremely useful in helping me migrate my SVN repo's to git. – Naz Dec 22 '09 at 10:35
feedback

I used the svn2git script and works like a charm! https://github.com/nirvdrum/svn2git

link|improve this answer
excellent. I found this after manually importing my svn with tags and branches. Looks like it does what I want. – spazm Jun 4 '11 at 19:08
Q: does this fix spaces in tag and branch names (allowed in svn and not allowed in git)? – spazm Jun 4 '11 at 19:16
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

Pro Git 8.2 explains it: http://progit.org/book/ch8-2.html

link|improve this answer
The Pro Git explanation includes migrating the tags and branches. It uses a local mv rather than svn commands. clever. – spazm Jun 4 '11 at 19:19
feedback

I highly recommend this short series of screencasts I just discovered. The author walks you through the basic operations, and showcases some more advanced usages.

link|improve this answer
feedback

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|improve this answer
feedback

There is a new solution for smooth migration from Subversion to Git (or for using both simultaneously): SubGit (http://subgit.com/).

I'm working on this project myself. We use SubGit in our repositories - some of my teammates use Git and some Subversion and so far it works very well.

To migrate from Subversion to Git with SubGit you need to run:

$ subgit install svn_repos
...
TRANSLATION SUCCESSFUL 

After that you'll get Git repository in svn_repos/.git and may clone it, or just continue to use Subversion and this new Git repository together: SubGit will make sure that both are always kept in sync.

In case your Subversion repository contains multiple projects, then multiple Git repositories will be created in svn_repos/git directory. To customize translation before running it do the following:

$ subgit configure svn_repos
$ edit svn_repos/conf/subgit.conf (change mapping, add authors mapping, etc)
$ subgit install svn_repos

With SubGit you may migrate to pure Git (not git-svn) and start using it while still keeping Subversion as long as you need it (for your already configured build tools, for instance).

Hope this helps!

link|improve this answer
feedback

Effectively using Git with Subversion is a gentle introduction to git-svn. For existing SVN repos, git-svn makes this super easy. If you're starting a new repo, it's vastly easier to first create an empty SVN repository then import using git-svn than it is going in the opposite direction. Creating a new git repository then importing into SVN can be done but it is a bit painful, especially if you're new to git and hope to preserve commit history.

link|improve this answer
feedback

I just wanted to add my contribution to the Git community. I wrote a simple bash script which automates the full import. Unlike other migration tools, this tool relies on native git instead of jGit. This tool also supports repositories with a large revision history and or large blobs. It's available via github:

https://github.com/onepremise/SGMS

This script will convert projects stored in SVN with the following format:

/trunk
  /Project1
  /Project2
/branches
     /Project1
     /Project2
/tags
 /Project1
 /Project2

This scheme is also popular and supported as well:

/Project1
     /trunk
     /branches
     /tags
/Project2
     /trunk
     /branches
     /tags

Each project will get synchronized over by project name:

Ex: ./migration https://svnurl.com/basepath project1

If you wish to convert the full repo over, use the following syntax:

Ex: ./migration https://svnurl.com/basepath .
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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