diff options
author | Nipunn Koorapati <nipunn@dropbox.com> | 2020-12-22 03:58:17 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-12-21 22:49:36 -0800 |
commit | 773c694142c630ccbf161287b5c2a7ad13e8ca9f (patch) | |
tree | 4e91b7fcadd05cb00d49a4d08c6e3afb90b97eb7 /remote.c | |
parent | negative-refspec: fix segfault on : refspec (diff) | |
download | tgif-773c694142c630ccbf161287b5c2a7ad13e8ca9f.tar.xz |
negative-refspec: improve comment on query_matches_negative_refspec
Comment did not adequately explain how the two loops work
together to achieve the goal of querying for matching of any
negative refspec.
Signed-off-by: Nipunn Koorapati <nipunn@dropbox.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'remote.c')
-rw-r--r-- | remote.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -740,6 +740,12 @@ static int query_matches_negative_refspec(struct refspec *rs, struct refspec_ite * item uses the destination. To handle this, we apply pattern * refspecs in reverse to figure out if the query source matches any * of the negative refspecs. + * + * The first loop finds and expands all positive refspecs + * matched by the queried ref. + * + * The second loop checks if any of the results of the first loop + * match any negative refspec. */ for (i = 0; i < rs->nr; i++) { struct refspec_item *refspec = &rs->items[i]; |