aboutsummaryrefslogtreecommitdiff
path: root/commit.h
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-11-09 22:15:27 -0800
committerJunio C Hamano <junkio@cox.net>2005-11-11 00:42:52 -0800
commitff56fe1ca7f43087fd84588af87179c2959d0cb3 (patch)
tree08aea33b837aa8ddd61ec93523d40e05c2291935 /commit.h
parente3e291fc07b49b74bb655ca854bdb19e849e044c (diff)
downloadgit-ff56fe1ca7f43087fd84588af87179c2959d0cb3.tar.gz
git-ff56fe1ca7f43087fd84588af87179c2959d0cb3.tar.xz
Add --pretty=fuller
git log without --pretty showed author and author-date, while with --pretty=full showed author and committer but no dates. The new formatting option, --pretty=fuller, shows both name and timestamp for author and committer. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'commit.h')
-rw-r--r--commit.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/commit.h b/commit.h
index 30702ca93..6738a696d 100644
--- a/commit.h
+++ b/commit.h
@@ -43,6 +43,7 @@ enum cmit_fmt {
CMIT_FMT_DEFAULT = CMIT_FMT_MEDIUM,
CMIT_FMT_SHORT,
CMIT_FMT_FULL,
+ CMIT_FMT_FULLER,
CMIT_FMT_ONELINE,
};