Re: [PATCH v4] git-svn: add support for prefixed globs in config

2016-01-05 Thread Eric Wong
Junio C Hamano wrote: > Victor Leschuk writes: > > + branches = branches/release_*:refs/remotes/project-a/branches/release_* > > Hmph, if you are going this route, I wonder if there is a reason to > limit yourself only to "prefix". Would allowing something like this: > > branches = bra

Re: [PATCH v4] git-svn: add support for prefixed globs in config

2015-12-30 Thread Junio C Hamano
Victor Leschuk writes: > Introduce prefixed globs for branches and tags in git-svn. > Globs like 'release_*' allow users to avoid long lines in config like: > > branches = branches/{release_20,release_21,release_22,...} > > Signed-off-by: Victor Leschuk > --- > Changes from v3: > * Wrapped

[PATCH v4] git-svn: add support for prefixed globs in config

2015-12-30 Thread Victor Leschuk
Introduce prefixed globs for branches and tags in git-svn. Globs like 'release_*' allow users to avoid long lines in config like: branches = branches/{release_20,release_21,release_22,...} Signed-off-by: Victor Leschuk --- Changes from v3: * Wrapped all test preparations in separate test