Function: magit-log-all-branches
magit-log-all-branches is an autoloaded, interactive and byte-compiled
function defined in magit-log.el.
Signature
(magit-log-all-branches &optional ARGS FILES)
Documentation
Show log for all local and remote branches and HEAD.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-log.el
;;;###autoload
(defun magit-log-all-branches (&optional args files)
"Show log for all local and remote branches and `HEAD'."
(interactive (magit-log-arguments))
(magit-log-setup-buffer (if (magit-get-current-branch)
(list "--branches" "--remotes")
(list "HEAD" "--branches" "--remotes"))
args files))