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

I'm using git-svn to work against my company's central svn repository. We've recently created a new feature branch in the central repo. How do I tell git about it? When I run git branch -r I can only see the branches that existed when I ran fetch against the svn repo to initialize my git repo?

share|improve this question

7 Answers

up vote 114 down vote accepted

You can manually add the remote branch,

git config --add svn-remote.newbranch.url https://svn/path_to_newbranch/
git config --add svn-remote.newbranch.fetch :refs/remotes/newbranch
git svn fetch newbranch [-r<rev>]
git checkout -b local-newbranch -t newbranch
git svn rebase newbranch
share|improve this answer
2  
just adding this link to the docs as a reference kernel.org/pub/software/scm/git/docs/git-svn.html – slf Aug 22 '11 at 15:34
That link to the docs is down. I looked all over for a new link, but I can't find any "official" git-svn docs. Does anyone have a good link to replace this with? – Mu Mind Feb 9 '12 at 16:54
From .git/config it is quite easy to understand how remote branches can be configured from single / multiple repositories. – Mikael Lepistö Feb 11 '12 at 13:48
isn't the whole point of --stdlayout so that git svn can know some of these things. IMO There should be a git svn command which does the first 3 all in one shot based off --stdlayout – jrwren Apr 12 '12 at 13:05
2  
I think git-scm.com/docs/git-svn is the official link. – cringe May 11 '12 at 7:36
show 1 more comment

If you want to track ALL the remote svn branches, then the solution is as simple as:

git svn fetch

This will fetch ALL the remote branches that have not been fetched yet.

Extra tip: if you checked out only the trunk at first, and later you want to track ALL branches, then edit .git/config to look like this and re-run git svn fetch:

[svn-remote "svn"]
        url = https://svn/path_to_repo_root/
        fetch = path_to_trunk:refs/remotes/git-svn
        branches = path_to_branches/*:refs/remotes/*

The key points are url should point to the repository root, and the paths defined in fetch and branches should be relative to url.

If you want to fetch only specific branches instead of ALL, there is a nice example in git svn --help:

[svn-remote "huge-project"]
        url = http://server.org/svn
        fetch = trunk/src:refs/remotes/trunk
        branches = branches/{red,green}/src:refs/remotes/branches/*
        tags = tags/{1.0,2.0}/src:refs/remotes/tags/*

However, I don't know if this is a bug, but once I specified branches like this, I cannot get new branches by changing this setting later. My workaround for that is using additional fetch lines for the branches I want, for example:

[svn-remote "huge-project"]
        url = http://server.org/svn
        fetch = trunk/src:refs/remotes/trunk
        branches = branches/{red,green}/src:refs/remotes/branches/*
        fetch = branches/blue:refs/remotes/branches/blue
share|improve this answer
I am also unable to change the branches line and need to use additional fetch lines. – sandos Jan 8 at 10:51
I like this solution better because, this one was able to show me nice graph in git also was able to see the history in files. With the accepted solution, it treated each branch with its own history and only showed the last commit (one that created the branch) and I was not able to see file change history. Only problem I have is not being able to add the branches later as you indicated.. I hope this get resolved soon. – bond Apr 8 at 15:43

Instead of dealing with the git-svn quirks you may try SubGit.

One has to install SubGit into Subversion repository. After that one can use standard git workflow instead of using special git-svn commands:

  1. Pushing new commits:

    git-svn:

    $ git commit
    $ git svn rebase
    $ git svn dcommit
    

    SubGit:

    $ git commit
    $ git push
    
  2. Fetching incoming changes

    git-svn:

    $ git svn rebase
    

    SubGit:

    $ git pull [--rebase]
    
  3. Creating a new branch:

    git-svn:

    $ git svn branch foo
    $ git checkout -b foo -t remotes/foo
    $ git commit
    $ git svn dcommit
    

    SubGit:

    $ git checkout -b foo
    $ git commit
    $ git push
    

See SubGit documentation for more details.

share|improve this answer
SubGit has the disadvantage that it creates two repositories - one svn, and one "shadow" git repository. This might be a problem for huge SVN repositories... – Udo Sep 25 '12 at 17:56
@Udo if SVN repository has a few projects, one may specify just one of them and synchronize it with Git repository. In this case there's no need to convert the whole Subversion repository into Git. But if one has a huge SVN project in this repository, one may convert not the whole history of this repository but the history starting from some minimal revision. This allows to decrease the size of translated Git repository. – vadishev Sep 26 '12 at 13:53
@Udo -- any company not willing to buy their repository server a hard drive has their priorities messed up. But most places with huge repositories take their repositories pretty seriously, and the disk space requirements for repositories are generally not a major issue, even for companies with decades of history and tens of millions of lines of code and hundreds of thousands of revisions. It's the company's most concrete form of their core intellectual assets, and disk space is pretty inexpensive. It might trigger a need to upgrade a RAID controller, but even so, the gain in productivity... – Bob Kerns Oct 4 '12 at 15:35
@Bob Kerns - The point is that "size wise" SVN and Git and not compatible. It's not a question of disk storage or so. But you can work with a huge SVN repository because usually you need to checkout out only a few files/projects. But you can't clone a huge Git repository - it doesn't make fun at least ;-) By "huge" I mean several Gigs. – Udo Oct 31 '12 at 14:00

I have not found any documentation about this feature, but looks like git svn configuration supports multiple fetch entries. This way you can also add branches separately without need to add another remote svn repository entry to your config nor using wildcards to get all branches of certain directory.

Assume that your SVN tree is really nasty having lots of branches without any logic how they are located, e.g. having branches and sub-directories containing more branched.

i.e.

trunk
branches
  -> branch1
  -> sub-dir1
    -> branch2
    -> branch3
  -> sub-dir2
    -> branch4
    -> sub-dir3
      -> branchX 
<... hundreds more ...>

and you just want to hand pick some of the branches to be included to your git repository.

You may first init your repository with only trunk without any additional branches:

git svn clone -r 10000:HEAD https://svn.com/MyRepo myrepo --prefix=svn/ --trunk=trunk 

After that you should see following configuration:

localhost: elhigu$ git config --get-regexp "svn-remote."
svn-remote.svn.url https://svn.com/MyRepo
svn-remote.svn.fetch trunk:refs/remotes/svn/trunk

when ever you want to fetch new branch from MyRepo you can just add new fetch entries to configuration by:

git config --add svn-remote.svn.fetch branches/sub-dir2/branch4:refs/remotes/svn/branches/sub-dir2/branch4

Or you may edit the same configuration in .git/config

To fetch the new branches after adding them to config just run:

git svn fetch -r 10000:HEAD

[Edit] Sometimes it seems to be necessary to run fetch with --all parameter to fetch newly added branches:

git svn fetch --all -r 10000:HEAD
share|improve this answer

If you don't check out with a valid layout, you won't be able to checkout a remote branch.

This is what I do:

git svn init -s <svn path with no trunk> local_repo
cd local_repo
git svn fetch 
## wait

After that, you can switch to a remote branch:

git checkout --track -b branch_name branch_name

Then you will automatically be switched to your branch.

share|improve this answer

Maybe I messed it up somehow but I followed the instructions in vjangus' answer and it almost worked. The only problem was that newbranch didn't appear to be branched from the trunk. In gitk, it was kind of "floating" all on its own; it had no common ancestor with the trunk.

The solution to this was:

  1. Find the SHA1 of the last commit that happened on trunk before the branch was created.
  2. Find the SHA1 of the first commit on the new branch (message is probably "Created new branch, copied from trunk@12345" or something)
  3. git diff-tree <sha1 from step 1> <sha1 from step 2> -- there should be no output. If there is output, you may have selected the wrong commits.
  4. git checkout local-newbranch then git rebase <sha1 from step 1>. This will rebase local-newbranch onto the new tree but remotes/newbranch will still be disconnected.
  5. Go to the file .git/refs/remotes/newbranch and edit it to contain the full SHA1 of the new commit (on the rebased newbranch) that corresponds to the old commit it's currently pointing at. (Or maybe use git-update-ref refs/remotes/newbranch <new-SHA>. Thank you inger.)
  6. The next time you git svn dcommit to newbranch, you'll get a bunch of messages about it updating some log. This is normal I think.

I recommend keeping gitk --all open the whole time and refreshing it often to keep track of what you're doing. I'm still sort of new to git and git svn so please suggest improvements to this method.

share|improve this answer
Thanks, this sounds useful. About 5. probably 'git-update-ref refs/remotes/newbranch <new-SHA>' is the safer option. – inger Jan 27 '11 at 23:38
Just tried vjangus' way again and it worked perfectly. I'll leave this here anyway since it might be valuable to someone... – MatrixFrog Jan 28 '11 at 21:45
vjangus solution always creates the new branch disconnected from the trunk. I assume this is because of the way SVN itself has no clue on how the actual content is copied around. – bogdan.mustiata Aug 31 '11 at 13:45
My experience with a large git-svn repo is that svn branches are always created in git detached from the trunk. There ought to be some way to connect them, but I haven't taken the time to figure it out. AFAIK, you can't rebase the git branch that is connected to the svn branch, because that will mess up the dcommit logic. We've just learned to live with it. – Spencer Mar 2 '12 at 14:10

It appears I just needed to git svn fetch; somehow I had convinced myself that would fetch the entire repo instead of just the changes.

share|improve this answer
1  
That's the solution but not the correct answer.. – dmkc Jul 22 '10 at 19:32
@mitjak Why is it not the correct answer, if it's the solution? I don't understand the subtlety of the response. – rholmes Mar 18 '11 at 19:10
'a solution' maybe not 'the solution' – slf Aug 22 '11 at 15:30
2  
One solution to rule them all... – DougW Jan 26 '12 at 0:15
@rholmes: I'm pretty sure mitjak means that that's the solution to your problem but not the answer to the question you asked. (Because you asked the wrong question; as you misinterpreted the issue at the time.) – Mike Nelson Jun 19 '12 at 20:17
show 2 more comments

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.