From: Karthik Nayak Date: Sun, 18 Oct 2015 10:25:04 +0000 (+0530) Subject: tag.c: use the correct algorithm for the '--contains' option X-Git-Tag: v2.7.0-rc0~76^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=008ed7df93082103c8c74d045e573e19868b2c6b;p=thirdparty%2Fgit.git tag.c: use the correct algorithm for the '--contains' option In b7cc53e9 (tag.c: use 'ref-filter' APIs, 2015-09-11) we port tag.c to use the ref-filter APIs for filtering and printing refs. In ref-filter we have two implementations for filtering refs when the '--contains' option is used. Although they do the same thing, one is optimized for filtering branches and the other for tags (borrowed from branch.c and tag.c respectively) and the 'filter->with_commit_tag_algo' bit decides which algorithm must be used. We should unify these. When we ported tag.c to use ref-filter APIs we missed out on setting the 'filter->with_commit_tag_algo' bit. As reported by Jerry Snitselaar, this causes "git tag --contains" to work way slower than expected, fix this by setting 'filter->with_commit_tag_algo' in tag.c before calling 'filter_refs()'. Mentored-by: Matthieu Moy Tested-by: Jerry Snitselaar Signed-off-by: Karthik Nayak Signed-off-by: Junio C Hamano --- diff --git a/builtin/tag.c b/builtin/tag.c index b2e4ddca07..42554d81c3 100644 --- a/builtin/tag.c +++ b/builtin/tag.c @@ -52,6 +52,7 @@ static int list_tags(struct ref_filter *filter, struct ref_sorting *sorting, con } verify_ref_format(format); + filter->with_commit_tag_algo = 1; filter_refs(&array, filter, FILTER_REFS_TAGS); ref_array_sort(sorting, &array);