summaryrefslogtreecommitdiffstats
path: root/revision.h
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-04-25 08:36:22 +0200
committerJunio C Hamano <junkio@cox.net>2007-04-26 06:39:43 +0200
commita7b02ccf9a682fa0c2b28df6ca20f9199cdca4de (patch)
treec34f6ecdfefa05a4280c276c96f10b5450d79a5a /revision.h
parentinit_buffer(): Kill buf pointer (diff)
downloadgit-a7b02ccf9a682fa0c2b28df6ca20f9199cdca4de.tar.xz
git-a7b02ccf9a682fa0c2b28df6ca20f9199cdca4de.zip
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 '')
-rw-r--r--revision.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/revision.h b/revision.h
index 5b41e2da20..cdf94ad695 100644
--- a/revision.h
+++ b/revision.h
@@ -63,8 +63,8 @@ struct rev_info {
/* Format info */
unsigned int shown_one:1,
- abbrev_commit:1,
- relative_date:1;
+ abbrev_commit:1;
+ enum date_mode date_mode;
const char **ignore_packed; /* pretend objects in these are unpacked */
int num_ignore_packed;