diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-04-28 15:50:08 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-04-28 15:50:08 -0700 |
commit | d3fc8dc53a7ef9f33a5d9604b382e24408a9b7be (patch) | |
tree | 5f3a7e6ad3336d850083af8b24e38a2fffe089c9 /Documentation/config/log.txt | |
parent | Merge branch 'vd/range-diff-with-custom-pretty-format-fix' (diff) | |
parent | log: add log.excludeDecoration config option (diff) | |
download | tgif-d3fc8dc53a7ef9f33a5d9604b382e24408a9b7be.tar.xz |
Merge branch 'ds/log-exclude-decoration-config'
The "--decorate-refs" and "--decorate-refs-exclude" options "git
log" takes have learned a companion configuration variable
log.excludeDecoration that sits at the lowest priority in the
family.
* ds/log-exclude-decoration-config:
log: add log.excludeDecoration config option
log-tree: make ref_filter_match() a helper method
Diffstat (limited to 'Documentation/config/log.txt')
-rw-r--r-- | Documentation/config/log.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Documentation/config/log.txt b/Documentation/config/log.txt index e9e1e397f3..208d5fdcaa 100644 --- a/Documentation/config/log.txt +++ b/Documentation/config/log.txt @@ -18,6 +18,12 @@ log.decorate:: names are shown. This is the same as the `--decorate` option of the `git log`. +log.excludeDecoration:: + Exclude the specified patterns from the log decorations. This is + similar to the `--decorate-refs-exclude` command-line option, but + the config option can be overridden by the `--decorate-refs` + option. + log.follow:: If `true`, `git log` will act as if the `--follow` option was used when a single <path> is given. This has the same limitations as `--follow`, |