diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-11-25 15:21:42 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-25 15:47:29 -0800 |
commit | c1a41b9d04d81f1c64754c933ef596045cfb99aa (patch) | |
tree | f17d880825ba0c1ddaf527db506088c753a93ee9 /builtin-tag.c | |
parent | builtin-tag: accept and process multiple -m just like git-commit (diff) | |
download | tgif-c1a41b9d04d81f1c64754c933ef596045cfb99aa.tar.xz |
"git-tag -s" should create a signed annotated tag
The earlier patch 396865859918e9c7bf8ce74aae137c57da134610 (Make
builtin-tag.c use parse_options.) broke "git-tag -s".
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-tag.c')
-rw-r--r-- | builtin-tag.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/builtin-tag.c b/builtin-tag.c index 3a6467d8ed..114c684d24 100644 --- a/builtin-tag.c +++ b/builtin-tag.c @@ -398,6 +398,9 @@ int cmd_tag(int argc, const char **argv, const char *prefix) argc = parse_options(argc, argv, options, git_tag_usage, 0); + if (sign) + annotate = 1; + if (list) return list_tags(list == no_pattern ? NULL : list, lines); if (delete) |