diff options
author | Jonas Fonseca <fonseca@diku.dk> | 2006-08-28 15:52:13 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-28 16:20:33 -0700 |
commit | 3dfb9278dff6d81fcc062e9a56edab9ece38ea7d (patch) | |
tree | a6b36e289c7ab62cfeb8121f597a2bfe3f2595b3 /builtin-show-branch.c | |
parent | b17fda5c07744190e2f9caa24321596830064083 (diff) | |
download | git-3dfb9278dff6d81fcc062e9a56edab9ece38ea7d.tar.gz |
Add --relative-date option to the revision interface
Exposes the infrastructure from 9a8e35e98793af086f05d1ca9643052df9b44a74.
Signed-off-by: Jonas Fonseca <fonseca@diku.dk>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-show-branch.c')
-rw-r--r-- | builtin-show-branch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-show-branch.c b/builtin-show-branch.c index 18786f88e3..d7de18ec0b 100644 --- a/builtin-show-branch.c +++ b/builtin-show-branch.c @@ -261,7 +261,7 @@ static void show_one_commit(struct commit *commit, int no_name) struct commit_name *name = commit->util; if (commit->object.parsed) pretty_print_commit(CMIT_FMT_ONELINE, commit, ~0, - pretty, sizeof(pretty), 0, NULL, NULL); + pretty, sizeof(pretty), 0, NULL, NULL, 0); else strcpy(pretty, "(unavailable)"); if (!strncmp(pretty, "[PATCH] ", 8)) |