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 <nathan.panike@xxxxxxxxx> --- 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 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html