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?
|
|
||||
|
|
|
You can manually add the remote branch,
|
|||||||||||||||
|
|
It appears I just needed to |
|||||||||||||||
|
|
If you want to track ALL the remote svn branches, then the solution is as simple as:
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
The key points are If you want to fetch only specific branches instead of ALL, there is a nice example in
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
|
|||||
|
|
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:
I recommend keeping |
|||||||||
|
|
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.
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:
After that you should see following configuration:
when ever you want to fetch new branch from MyRepo you can just add new fetch entries to configuration by:
Or you may edit the same configuration in .git/config To fetch the new branches after adding them to config just run:
[Edit] Sometimes it seems to be necessary to run fetch with --all parameter to fetch newly added branches:
|
||||
|
|
|
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:
See SubGit documentation for more details. |
|||||||||
|
|
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:
After that, you can switch to a remote branch:
Then you will automatically be switched to your branch. |
|||
|
|