diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-08-03 11:01:20 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-08-03 11:01:20 -0700 |
commit | 2dded96052114c7b902d90f80f75a30eb64d860a (patch) | |
tree | f8c7116edec1c72755cf3f1f62176a9acbc5a2ec /Documentation | |
parent | 178d2c7a7fdf0af639078963acfa6d56bad278ca (diff) | |
parent | 076c98372e7d3c86d269c1526349a67b73904330 (diff) | |
download | git-2dded96052114c7b902d90f80f75a30eb64d860a.tar.gz |
Merge branch 'dt/log-follow-config'
Add a new configuration variable to enable "--follow" automatically
when "git log" is run with one pathspec argument.
* dt/log-follow-config:
log: add "log.follow" configuration variable
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-log.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Documentation/git-log.txt b/Documentation/git-log.txt index 5692945a0b..97b9993ee8 100644 --- a/Documentation/git-log.txt +++ b/Documentation/git-log.txt @@ -184,6 +184,12 @@ log.date:: `--date` option.) Defaults to "default", which means to write dates like `Sat May 8 19:35:34 2010 -0500`. +log.follow:: + If a single <path> is given to git log, it will act as + if the `--follow` option was also used. This has the same + limitations as `--follow`, i.e. it cannot be used to follow + multiple files and does not work well on non-linear history. + log.showRoot:: If `false`, `git log` and related commands will not treat the initial commit as a big creation event. Any root commits in |