Function: magit-switch-to-repository-buffer-other-frame
magit-switch-to-repository-buffer-other-frame is an autoloaded,
interactive and byte-compiled function defined in magit-extras.el.
Signature
(magit-switch-to-repository-buffer-other-frame BUFFER)
Documentation
Switch to a Magit buffer belonging to the current Git repository.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-extras.el
;;;###autoload
(defun magit-switch-to-repository-buffer-other-frame (buffer)
"Switch to a Magit buffer belonging to the current Git repository."
(interactive (list (magit--read-repository-buffer
"Switch to magit buffer in another frame: ")))
(switch-to-buffer-other-frame buffer))