diff options
author | Junio C Hamano <junkio@cox.net> | 2007-04-24 23:36:22 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-04-25 21:39:43 -0700 |
commit | a7b02ccf9a682fa0c2b28df6ca20f9199cdca4de (patch) | |
tree | c34f6ecdfefa05a4280c276c96f10b5450d79a5a /cache.h | |
parent | 3e0a93a5bf9fe10453599a94af8191f421ee3b16 (diff) | |
download | git-a7b02ccf9a682fa0c2b28df6ca20f9199cdca4de.tar.gz git-a7b02ccf9a682fa0c2b28df6ca20f9199cdca4de.tar.xz |
Add --date={local,relative,default}
This adds --date={local,relative,default} option to log family of commands,
to allow displaying timestamps in user's local timezone, relative time, or
the default format.
Existing --relative-date option is a synonym of --date=relative; we could
probably deprecate it in the long run.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -389,7 +389,7 @@ extern void *read_object_with_reference(const unsigned char *sha1, unsigned long *size, unsigned char *sha1_ret); -enum date_mode { DATE_NORMAL = 0, DATE_RELATIVE, DATE_SHORT }; +enum date_mode { DATE_NORMAL = 0, DATE_RELATIVE, DATE_SHORT, DATE_LOCAL }; const char *show_date(unsigned long time, int timezone, enum date_mode mode); const char *show_rfc2822_date(unsigned long time, int timezone); int parse_date(const char *date, char *buf, int bufsize); |