aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2023-12-16 11:04:24 +0200
committerEli Zaretskii2023-12-16 11:04:24 +0200
commit100a2ab24605b973172b39d0b21adcdcd9907ba9 (patch)
tree0071bd32854e54f761344cde7009b64665e0a5ea
parent746507dc3b9f555ff6e8e6282ff03ac211752325 (diff)
downloademacs-100a2ab24605b973172b39d0b21adcdcd9907ba9.tar.gz
emacs-100a2ab24605b973172b39d0b21adcdcd9907ba9.zip
; * lisp/vc/vc-git.el (vc-git-print-log-follow): Doc fix.
-rw-r--r--lisp/vc/vc-git.el13
1 files changed, 7 insertions, 6 deletions
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el
index f6e8e1b7042..24469f04f7c 100644
--- a/lisp/vc/vc-git.el
+++ b/lisp/vc/vc-git.el
@@ -1429,15 +1429,16 @@ This prompts for a branch to merge from."
1429;; Long explanation here: 1429;; Long explanation here:
1430;; https://stackoverflow.com/questions/46487476/git-log-follow-graph-skips-commits 1430;; https://stackoverflow.com/questions/46487476/git-log-follow-graph-skips-commits
1431(defcustom vc-git-print-log-follow nil 1431(defcustom vc-git-print-log-follow nil
1432 "If true, use the flag `--follow' when producing single file logs. 1432 "If non-nil, use the flag `--follow' when producing single file logs.
1433 1433
1434It will make the printed log automatically follow the renames. 1434A non-nil value will make the printed log automatically follow
1435The downsides is that the log produced this way may omit 1435the file renames. The downsides is that the log produced this
1436certain (merge) commits, and that `log-view-diff' fails on 1436way may omit certain (merge) commits, and that `log-view-diff'
1437commits that used the previous name, in that log buffer. 1437fails on commits that used the previous name, in that log buffer.
1438 1438
1439When this variable is nil, and the log ends with a rename, we 1439When this variable is nil, and the log ends with a rename, we
1440print a button below that shows the log for the previous name." 1440show a button below that which allows to show the log for the
1441file name before the rename."
1441 :type 'boolean 1442 :type 'boolean
1442 :version "26.1") 1443 :version "26.1")
1443 1444