Re: [PATCH v2 04/16] ref-filter: modify "%(objectname:short)" to take length

2016-03-19 Thread Karthik Nayak
Hello On Wed, Mar 16, 2016 at 3:41 AM, Jacob Keller wrote: > On Tue, Mar 15, 2016 at 9:47 AM, Karthik Nayak wrote: >> Add support for %(objectname:short=) which would print the >> abbreviated unique objectname of given length. When no length is >> specified 7 is used. The minimum length is 'MINI

Re: [PATCH v2 04/16] ref-filter: modify "%(objectname:short)" to take length

2016-03-15 Thread Jacob Keller
On Tue, Mar 15, 2016 at 9:47 AM, Karthik Nayak wrote: > Add support for %(objectname:short=) which would print the > abbreviated unique objectname of given length. When no length is > specified 7 is used. The minimum length is 'MINIMUM_ABBREV'. > Isn't the default abbreviation value used here, no

[PATCH v2 04/16] ref-filter: modify "%(objectname:short)" to take length

2016-03-15 Thread Karthik Nayak
Add support for %(objectname:short=) which would print the abbreviated unique objectname of given length. When no length is specified 7 is used. The minimum length is 'MINIMUM_ABBREV'. Add tests and documentation for the same. Mentored-by: Christian Couder Mentored-by: Matthieu Moy Signed-off-b