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?

link|improve this question

feedback

6 Answers

up vote 62 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
link|improve this answer
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 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 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 at 13:05
I think git-scm.com/docs/git-svn is the official link. – cringe May 11 at 7:36
feedback

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.

link|improve this answer
1  
That's the solution but not the correct answer.. – mitjak 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
1  
One solution to rule them all... – DougW Jan 26 at 0:15
feedback

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.

link|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 at 14:10
feedback

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.

link|improve this answer
feedback

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

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 be like this, and the 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/*

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/*
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.