Variable: magit-git-output-coding-system

magit-git-output-coding-system is a customizable variable defined in magit-git.el.

Value

nil

Documentation

Coding system for receiving output from Git.

If non-nil, the Git config value i18n.logOutputEncoding should be set via magit-git-global-arguments to value consistent with this.

This variable was added, or its default value changed, in magit version 2.9.0.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-git.el
(defcustom magit-git-output-coding-system
  (and (eq system-type 'windows-nt) 'utf-8)
  "Coding system for receiving output from Git.

If non-nil, the Git config value `i18n.logOutputEncoding' should
be set via `magit-git-global-arguments' to value consistent with
this."
  :package-version '(magit . "2.9.0")
  :group 'magit-process
  :type '(choice (coding-system :tag "Coding system to decode Git output")
                 (const :tag "Use system default" nil)))