Function: magit-display-repository-buffer

magit-display-repository-buffer is an autoloaded, interactive and byte-compiled function defined in magit-extras.el.

Signature

(magit-display-repository-buffer BUFFER)

Documentation

Display a Magit buffer belonging to the current Git repository.

The buffer is displayed using magit-display-buffer, which see.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-extras.el
;;; Buffer Switching

;;;###autoload
(defun magit-display-repository-buffer (buffer)
  "Display a Magit buffer belonging to the current Git repository.
The buffer is displayed using `magit-display-buffer', which see."
  (interactive (list (magit--read-repository-buffer
                      "Display magit buffer: ")))
  (magit-display-buffer (get-buffer buffer)))