Function: magit-reflog-current

magit-reflog-current is an autoloaded, interactive and byte-compiled function defined in magit-reflog.el.

Signature

(magit-reflog-current)

Documentation

Display the reflog of the current branch.

If HEAD is detached, then show the reflog for that instead.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-reflog.el
;;; Commands

;;;###autoload
(defun magit-reflog-current ()
  "Display the reflog of the current branch.
If `HEAD' is detached, then show the reflog for that instead."
  (interactive)
  (magit-reflog-setup-buffer (or (magit-get-current-branch) "HEAD")))