I'm working with an svn repo that has about 10 branches that are each about 4 gigs in size, and it seems that when I run fetch using git-svn it wants to fetch ALL of these branches. I really only personally work with two of them, so how can I just fetch those two branches and ignore the rest?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
To answer my own question, in your .git/config file, you can edit the configuration of the [svn-remote "svn"] branches section. In my case, I edited the branches configuration from:
To
The {whatever} section replaces a glob and you can have a comma-separated list of patterns for stuff you actually want to track instead. |
|||
|
|