Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
54  
Actually, I think you have every right to expect it to be that simple. – Tim Long Dec 16 '11 at 18:47

15 Answers

up vote 161 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
share|improve this answer
2  
On Ubuntu, the command is git svn clone... (no "-"). – nico_ekito Jan 23 '12 at 8:59
2  
As well as OS X, no "-" needed. – ZacharyP Jan 25 '12 at 16:10
31  
The answer from @Casey answers the original question much better. – Hellfire Feb 26 '12 at 14:58
7  
By now, git-svn is git svn on all systems (and this applies to all git commands). – Blaisorblade May 16 '12 at 15:42
1  
Will this keep the branches and everything? or just clone the trunk? – Eildosa Sep 25 '12 at 19:16
show 2 more comments

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 your layout differs, become familiar with --tags, --branches, --trunk options (in general git svn help).

All commons protocols are allowed : svn://, http://, https://. The url should target the base repository, something like http://svn.mycompany.com/myrepo/repository. That must not include /trunk, /tag or /branches.

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
cd dest_dir

The local branches that you created earlier from remote branches will only have been copied as remote branches into the new cloned repository. For each branch you want to keep:

git checkout -b local_branch origin/remote_branch

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

git remote rm origin
share|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
3  
awesome instruction. it deserves to be the answer to read number one. vote +1 – Pavel C. Jul 22 '11 at 18:46
9  
This blog post by Eelke is a great cross-reference for the answer above. blokspeed.net/blog/2010/09/converting-from-subversion-to-git – kgriffs Mar 6 '12 at 16:13
2  
This is 99% awesome, following these steps, I got everything in order except branches: after the final step, they were remote only (and as such disappeared when I did the command: git remote rm origin) – Dirty Henry Mar 29 '12 at 9:22
1  
To save all branches add: cd dest_dir git checkout -b local_branch remote_branch for every branch after cloning: git clone dest_dir-tmp dest_dir before removing temporary dir: rm -rf dest_dir-tmp – Chobicus Apr 5 '12 at 15:11
show 15 more comments

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.

If your subversion repository is on the same machine as your desired git repository, then you can use this syntax for the init step, otherwise all the same:

git svn init file:///home/user/repoName --no-metadata
share|improve this answer
As I commented on the other answer, I had to remove the spaces around = in users.txt because the import was aborting and I was getting an empty repository. – Sebastián Grignoli Jan 31 at 3:08
Ah! Simple and effective explanation. In my case file:/// refused to work, just I used svnserve.exe --daemon and then used svn://localhost/home/user/repo instead. – Daniel Reis Jun 5 at 12:13

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. I'm not sure if this works on Windows, it 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 trying out my very own git_remote_branch tool, which helps dealing with remote branches:

First explanatory post: "Git remote branches"

Follow-up for the most recent version: "Time to git collaborating with git_remote_branch"

share|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
Extremely helpful, this worked perfectly. I would add that there is one final step to take if you are synching to a remote repository. After the git config steps, I needed to git push origin master – mag382 Oct 24 '12 at 15:17

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

share|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

Pro Git 8.2 explains it: http://git-scm.com/book/en/Git-and-Other-Systems-Migrating-to-Git

share|improve this answer
1  
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

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

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!

share|improve this answer
1  
Thank you. I was stuck with git-svn throwing errors and being unable to convert my repo. Your answer was exactly what I needed, subgit worked without a hitch. – user984976 Feb 6 at 6:39

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

share|improve this answer

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.

share|improve this answer

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

TortoiseGit does this. see this blog post: http://jimmykeen.net/articles/03-nov-2012/how-migrate-from-svn-to-git-windows-using-tortoise-clients

Yeah, I know answering with links isn't splendid but it's a solution, eh?

share|improve this answer

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 .
share|improve this answer

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.

share|improve this answer

Apparently snv2git will do it. Hadn't seen it mentioned here yet.

https://github.com/nirvdrum/svn2git

share|improve this answer
Already mentioned in the following [stackoverflow.com/a/4860157/1132178](answer) by Thiago Leão Moreira. – Mikael Hallne Mar 15 at 11:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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