summaryrefslogtreecommitdiff
path: root/tag.h
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2010-05-21 04:02:17 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2010-05-21 04:02:17 -0700
commite22d62d9151e0e51c3dc4f951fb5d88dc30482c6 (patch)
tree1660cbd676f75d5ddc6a9407463322fd162a8d25 /tag.h
parentMerge branch 'jc/status-show-ignored' (diff)
parentdescribe: Break annotated tag ties by tagger date (diff)
downloadtgif-e22d62d9151e0e51c3dc4f951fb5d88dc30482c6.tar.xz
Merge branch 'sp/maint-describe-tiebreak-with-tagger-date'
* sp/maint-describe-tiebreak-with-tagger-date: describe: Break annotated tag ties by tagger date tag.c: Parse tagger date (if present) tag.c: Refactor parse_tag_buffer to be saner to program tag.h: Remove unused signature field tag.c: Correct indentation
Diffstat (limited to 'tag.h')
-rw-r--r--tag.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tag.h b/tag.h
index 7a0cb0070d..47662724a6 100644
--- a/tag.h
+++ b/tag.h
@@ -9,7 +9,7 @@ struct tag {
struct object object;
struct object *tagged;
char *tag;
- char *signature; /* not actually implemented */
+ unsigned long date;
};
extern struct tag *lookup_tag(const unsigned char *sha1);