diff options
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/tag.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/builtin/tag.c b/builtin/tag.c index 767162e3a9..071d001655 100644 --- a/builtin/tag.c +++ b/builtin/tag.c @@ -86,6 +86,11 @@ static int in_commit_list(const struct commit_list *want, struct commit *c) return 0; } +/* + * The entire code segment for supporting the --contains option has been + * copied over to ref-filter.{c,h}. This will be deleted evetually when + * we port tag.c to use ref-filter APIs. + */ enum contains_result { CONTAINS_UNKNOWN = -1, CONTAINS_NO = 0, |