[PATCH 2/2] Give %as and %cs meaning for pretty format
From: Nathan Panike <hidden>
Date: 2016-06-15 22:45:15
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Nathan Panike <hidden>
Date: 2016-06-15 22:45:15
Subsystem:
the rest · Maintainer:
Linus Torvalds
After this patch, if one does, for example git log -1 --pretty=format:"%as %h" e83c5163316f89bfb one gets 2005-04-07 e83c516 and if one does git log -1 --pretty=format:"%cs %h" e83c5163316f89bfb one gets 2005-04-07 e83c516 Signed-off-by: Nathan W. Panike <redacted> --- pretty.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/pretty.c b/pretty.c
index 33ef34a..b1319a8 100644
--- a/pretty.c
+++ b/pretty.c@@ -388,6 +388,9 @@ static size_t format_person_part(struct strbuf*sb, char part,
case 'i': /* date, ISO 8601 */
strbuf_addstr(sb, show_date(date, tz, DATE_ISO8601));
return placeholder_len;
+ case 's': /* date, short */
+ strbuf_addstr(sb, show_date(date, tz, DATE_SHORT));
+ return placeholder_len;
}
skip:
--
1.6.0.1