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