Junio C Hamano <gits...@pobox.com> writes:

> Karthik Nayak <karthik....@gmail.com> writes:
>
>> +static void do_merge_filter(struct ref_filter_cbdata *ref_cbdata)
>> +{
>> ...
>> +    for (i = 0; i < array->nr; i++) {
>> +            struct ref_array_item *item = array->items[i];
>> +            add_pending_object(&revs, &item->commit->object, item->refname);
>> +            to_clear[i] = item->commit;
>> +    }
>> +
>> +    filter->merge_commit->object.flags |= UNINTERESTING;
>> +    add_pending_object(&revs, &filter->merge_commit->object, "");
>> +
>> +    revs.limited = 1;
>> +    if (prepare_revision_walk(&revs))
>> +            die(_("revision walk setup failed"));
>> + ...
>
> Did this come from somewhere else (e.g. tag -l or branch -l)?  If
> so, you'd need a note similar to what you added in [02/11] to the
> original.

Ah, now I see this came from a part of print_ref_list in
builtin/branch.c; you would want to leave a note there.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to