Function: magit-decode-git-path
magit-decode-git-path is a byte-compiled function defined in
magit-git.el.
Signature
(magit-decode-git-path PATH)
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-git.el
(defun magit-decode-git-path (path)
(if (eq (aref path 0) ?\")
(decode-coding-string (read path)
(or magit-git-output-coding-system
(car default-process-coding-system))
t)
path))