Variable: change-log-directory-files

change-log-directory-files is a customizable variable defined in add-log.el.gz.

Value

(".bzr" ".git" ".hg" ".svn")

Documentation

List of files that cause find-change-log to stop in containing directory.

This applies if no pre-existing ChangeLog is found. If nil, then in such a case simply use the directory containing the changed file.

This variable was added, or its default value changed, in Emacs 26.1.

Probably introduced at or before Emacs version 26.1.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/add-log.el.gz
(defcustom change-log-directory-files '(".bzr" ".git" ".hg" ".svn")
  "List of files that cause `find-change-log' to stop in containing directory.
This applies if no pre-existing ChangeLog is found.  If nil, then in such
a case simply use the directory containing the changed file."
  :version "26.1"
  :type '(repeat file))