On Mon, Jun 20, 2011 at 08:40:32AM +0200, Johannes Sixt wrote:
quoted
$ git branch --match "jk/*"
to show only local topic branches whose names match the given blob.
I would hate having to learn a new syntax '--match "jk/*"' when we can
already say
$ git log --remotes
$ git log --remotes=alice --remotes=bob
$ git log --remotes="jk/*"
IMO, it is the right approach to have a long option --remotes with an
optional argument.
For that matter, --match should be spelled "--glob", as we already have:
$ git log --glob='jk/*'
I think having the ref-selection for "git branch" match that of the
revision walker makes sense.
-Peff