Re: [PATCH 1/3] describe: debug is incompatible with contains

2017-03-17 Thread Michael J Gruber
Junio C Hamano venit, vidit, dixit 15.03.2017 20:21: > Michael J Gruber writes: > >> `git describe --contains` calls into `git name-rev` which does not have >> any searching to do and thus does not display any debug information. >> >> Say so in the documentation and

Re: [PATCH 1/3] describe: debug is incompatible with contains

2017-03-15 Thread Junio C Hamano
Michael J Gruber writes: > `git describe --contains` calls into `git name-rev` which does not have > any searching to do and thus does not display any debug information. > > Say so in the documentation and catch the incompatible arguments. I am not sure if this is

[PATCH 1/3] describe: debug is incompatible with contains

2017-03-15 Thread Michael J Gruber
`git describe --contains` calls into `git name-rev` which does not have any searching to do and thus does not display any debug information. Say so in the documentation and catch the incompatible arguments. Signed-off-by: Michael J Gruber ---