Re: [PATCH v4 07/19] for-each-ref: add '--merged' and '--no-merged' options

2015-06-23 Thread Karthik Nayak
On Tue, Jun 23, 2015 at 4:11 AM, Eric Sunshine wrote: > > According to the documentation you added to the OPTIONS section, the > object following --merged and --no-merged is optional. Therefore, > shouldn't this be s//[]/ ? > > Also, in the OPTIONS section, you spelled it "commit" rather than "obj

Re: [PATCH v4 07/19] for-each-ref: add '--merged' and '--no-merged' options

2015-06-22 Thread Eric Sunshine
On Sun, Jun 21, 2015 at 4:48 PM, Karthik Nayak wrote: > Add the '--merged' and '--no-merged' options provided by 'ref-filter'. > The '--merged' option lets the user to only list refs merged into the > named commit. The '--no-merged' option lets the user to only list refs > not merged into the name

[PATCH v4 07/19] for-each-ref: add '--merged' and '--no-merged' options

2015-06-21 Thread Karthik Nayak
Add the '--merged' and '--no-merged' options provided by 'ref-filter'. The '--merged' option lets the user to only list refs merged into the named commit. The '--no-merged' option lets the user to only list refs not merged into the named commit. Add documentation and tests for the same. Based-on-