Function: magit-wip-log-current

magit-wip-log-current is an interactive and byte-compiled function defined in magit-wip.el.

Signature

(magit-wip-log-current BRANCH ARGS FILES COUNT)

Documentation

Show log for the current branch and its wip refs.

With a negative prefix argument only show the worktree wip ref. The absolute numeric value of the prefix argument controls how many "branches" of each wip ref are shown.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-wip.el
(defun magit-wip-log-current (branch args files count)
  "Show log for the current branch and its wip refs.
With a negative prefix argument only show the worktree wip ref.
The absolute numeric value of the prefix argument controls how
many \"branches\" of each wip ref are shown."
  (interactive
    (nconc (list (or (magit-get-current-branch) "HEAD"))
           (magit-log-arguments)
           (list (prefix-numeric-value current-prefix-arg))))
  (magit-wip-log branch args files count))