Function: magit-get-all
magit-get-all is a byte-compiled function defined in magit-git.el.
Signature
(magit-get-all &rest KEYS)
Documentation
Return all values of the Git variable specified by KEYS.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-git.el
(defun magit-get-all (&rest keys)
"Return all values of the Git variable specified by KEYS."
(let ((magit-git-debug nil)
(arg (and (or (null (car keys))
(string-prefix-p "--" (car keys)))
(pop keys)))
(key (string-join keys ".")))
(if (and magit--refresh-cache (not arg))
(magit-config-get-from-cached-list key)
(magit-git-items "config" arg "-z" "--get-all" "--include" key))))