Re: git svn clone, a non-standard layout question

2012-08-13 Thread Christopher Marshall
>> [svn-remote "svn"] >> url = file:///home/chris/programs/svn/repo >> fetch = trunk:refs/remotes/svn/trunk >> branches = branches/*:refs/remotes/svn/* >> tags = tags/*:refs/remotes/svn/tags/* >> branches = branches/bdir/*:refs/remotes/svn/bdir2/* >>

Re: git svn clone, a non-standard layout question

2012-08-13 Thread Peter Baumann
On Mon, Aug 13, 2012 at 09:29:53AM -0400, Christopher Marshall wrote: > > > > I had a similar problem, but I solved it using "ignore-paths" and > > "ignore-refs". > > If I remember correctly, you need to set both to ignore bdir directly > > without > > ignoring b3, b4,... > > > > For ignore-refs,

Re: git svn clone, a non-standard layout question

2012-08-13 Thread Christopher Marshall
> > I had a similar problem, but I solved it using "ignore-paths" and > "ignore-refs". > If I remember correctly, you need to set both to ignore bdir directly without > ignoring b3, b4,... > > For ignore-refs, pls see cdb51a13c3cf4830d499d1138160eacdd2b8aa46, as it is > currently > undocumented.

Re: git svn clone, a non-standard layout question

2012-08-12 Thread Peter Baumann
On Sun, Aug 12, 2012 at 11:23:16PM -0400, Christopher Marshall wrote: > I would like to use git svn to clone an svn repo with a non-standard > branches layout roughly like this: > trunk/ > tags/ > branches/ >b1 >b2 >... >bdir/ > b3 > b4 > ... > > That is, every di

git svn clone, a non-standard layout question

2012-08-12 Thread Christopher Marshall
I would like to use git svn to clone an svn repo with a non-standard branches layout roughly like this: trunk/ tags/ branches/ b1 b2 ... bdir/ b3 b4 ... That is, every directory under branches is a branch except bdir, and every directory under bdir is a branch. One t