Function: git-rebase-show-or-scroll-up

git-rebase-show-or-scroll-up is an interactive and byte-compiled function defined in git-rebase.el.

Signature

(git-rebase-show-or-scroll-up)

Documentation

Update the commit buffer for commit on current line.

Either show the commit at point in the appropriate buffer, or if that buffer is already being displayed in the current frame and contains information about that commit, then instead scroll the buffer up.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/git-rebase.el
(defun git-rebase-show-or-scroll-up ()
  "Update the commit buffer for commit on current line.

Either show the commit at point in the appropriate buffer, or if
that buffer is already being displayed in the current frame and
contains information about that commit, then instead scroll the
buffer up."
  (interactive)
  (git-rebase--show-commit 'up))