Re: [PATCH v3] rev-list: teach --no-object-names to enable piping

2019-06-18 Thread Emily Shaffer
On Mon, Jun 17, 2019 at 03:32:34PM -0700, Junio C Hamano wrote: > Emily Shaffer writes: > > > Allow easier parsing by cat-file by giving rev-list an option to print > > only the OID of a non-commit object without any additional information. > > This is a short-term shim; later on, rev-list should

Re: [PATCH v3] rev-list: teach --no-object-names to enable piping

2019-06-17 Thread Junio C Hamano
Emily Shaffer writes: > Allow easier parsing by cat-file by giving rev-list an option to print > only the OID of a non-commit object without any additional information. > This is a short-term shim; later on, rev-list should be taught how to > print the types of objects it finds in a format simila

[PATCH v3] rev-list: teach --no-object-names to enable piping

2019-06-14 Thread Emily Shaffer
Allow easier parsing by cat-file by giving rev-list an option to print only the OID of a non-commit object without any additional information. This is a short-term shim; later on, rev-list should be taught how to print the types of objects it finds in a format similar to cat-file's. Before this co