Re: [PATCH v2] revision: add --except option

2013-09-02 Thread Johannes Sixt
Am 8/31/2013 23:26, schrieb Felipe Contreras: +--except:: + Skip the following object names. For example: + '--branches --except master' will show all the branches, except master. + This differs from --not in that --except will still show the object, if + they are referenced

Re: [PATCH v2] revision: add --except option

2013-09-02 Thread Felipe Contreras
On Mon, Sep 2, 2013 at 1:30 AM, Johannes Sixt j.s...@viscovery.net wrote: It would be better to settle on the meaning of --except before throwing back and forth implementations. I've lost the count of features that get discussed endlessly, and nobody implements them ever. The implementation

[PATCH v2] revision: add --except option

2013-08-31 Thread Felipe Contreras
So that it's possible to remove certain refs from the list without removing the objects that are referenced by other refs. For example this repository: C (crap) B (test) A (HEAD, master) When using '--branches --except crap': B (test) A (HEAD, master) But when using '--branches