Variable: git-commit-use-local-message-ring

git-commit-use-local-message-ring is a customizable variable defined in git-commit.el.

Value

nil

Documentation

Whether to use a local message ring instead of the global one.

This can be set globally, in which case every repository gets its own commit message ring, or locally for a single repository.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/git-commit.el
(defcustom git-commit-use-local-message-ring nil
  "Whether to use a local message ring instead of the global one.

This can be set globally, in which case every repository gets its
own commit message ring, or locally for a single repository."
  :group 'git-commit
  :safe 'booleanp
  :type 'boolean)