Function: magit-switch-to-repository-buffer-other-window
magit-switch-to-repository-buffer-other-window is an autoloaded,
interactive and byte-compiled function defined in magit-extras.el.
Signature
(magit-switch-to-repository-buffer-other-window 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-window (buffer)
"Switch to a Magit buffer belonging to the current Git repository."
(interactive (list (magit--read-repository-buffer
"Switch to magit buffer in another window: ")))
(switch-to-buffer-other-window buffer))