diff options
author | Denis Cheng <crquan@gmail.com> | 2008-03-02 17:05:53 +0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-03-05 12:06:09 -0800 |
commit | 94c22a5e7b4247d7d6453272c4425d81071d2689 (patch) | |
tree | c6abde996c9cc483721843454f3b34ec4ffd9b6b /Documentation/pretty-options.txt | |
parent | 9225d7be0abab0c3b1325a733aea127b45a18625 (diff) | |
download | git-94c22a5e7b4247d7d6453272c4425d81071d2689.tar.gz |
log/show/whatchanged: introduce format.pretty configuration
When running log/show/whatchanged from the command line, the user may
want to use a preferred format without having to pass --pretty=<fmt>
option every time from the command line. This teaches these three
commands to honor a new configuration variable, format.pretty.
The --pretty option given from the command line will override the
configured format.
The earlier patch fixed the in-tree callers that run these commands
for purposes other than showing the output directly to the end user
(the only other in-tree caller is "git bisect visualize", whose output
directly goes to the end user and should be affected by this patch).
Similar fixes will be needed for end-user scripts that parse the
output from these commands and expect them to be in the default pretty
format.
Signed-off-by: Denis Cheng <crquan@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/pretty-options.txt')
-rw-r--r-- | Documentation/pretty-options.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Documentation/pretty-options.txt b/Documentation/pretty-options.txt index 973d8dd733..6d66c74cc1 100644 --- a/Documentation/pretty-options.txt +++ b/Documentation/pretty-options.txt @@ -4,6 +4,9 @@ where '<format>' can be one of 'oneline', 'short', 'medium', 'full', 'fuller', 'email', 'raw' and 'format:<string>'. When omitted, the format defaults to 'medium'. ++ +Note: you can specify the default pretty format in the repository +configuration (see linkgit:git-config[1]). --abbrev-commit:: Instead of showing the full 40-byte hexadecimal commit object |