diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-05-21 04:02:17 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-05-21 04:02:17 -0700 |
commit | e22d62d9151e0e51c3dc4f951fb5d88dc30482c6 (patch) | |
tree | 1660cbd676f75d5ddc6a9407463322fd162a8d25 /tag.h | |
parent | Merge branch 'jc/status-show-ignored' (diff) | |
parent | describe: Break annotated tag ties by tagger date (diff) | |
download | tgif-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |