From 31653c1abc1ac80206db9efca56ff1969150d8fe Mon Sep 17 00:00:00 2001 From: Eugene Letuchy Date: Fri, 20 Feb 2009 14:51:11 -0800 Subject: Make git blame's date output format configurable, like git log Add the following: - git config value blame.date that expects one of the git log date formats (e.g. relative,local,default,iso,...); - git blame command line option --date expects one of the git log date formats; - documentation in blame-options.txt; - git blame uses the appropriate date.c functions and enums to make sense of the date format and provide appropriate data; git blame continues to line up the output columns by padding the date column up to the max width of the chosen date format. The date format for git blame without both blame.date and --date continues to be ISO for backwards compatibility. git annotate ignores the date format specifiers and continues to uses the ISO format, as before. Signed-off-by: Eugene Letuchy Signed-off-by: Junio C Hamano --- Documentation/blame-options.txt | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Documentation/blame-options.txt') diff --git a/Documentation/blame-options.txt b/Documentation/blame-options.txt index 7f28432254..e6717af44e 100644 --- a/Documentation/blame-options.txt +++ b/Documentation/blame-options.txt @@ -70,6 +70,14 @@ of lines before or after the line given by . tree copy has the contents of the named file (specify `-` to make the command read from the standard input). +--date :: + The value is one of the following alternatives: + {relative,local,default,iso,rfc,short}. If --date is not + provided, the value of the blame.date config variable is + used. If the blame.date config variable is also not set, the + iso format is used. For more information, See the discussion + of the --date option at linkgit:git-log[1]. + -M||:: Detect moving lines in the file as well. When a commit moves a block of lines in a file (e.g. the original file -- cgit v1.2.1