Function: git-rebase-move-line-up
git-rebase-move-line-up is an interactive and byte-compiled function
defined in git-rebase.el.
Signature
(git-rebase-move-line-up N)
Documentation
Move the current commit (or command) N lines up.
If N is negative, move the commit down instead. With an active region, move all the lines that the region touches, not just the current line.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/git-rebase.el
(defun git-rebase-move-line-up (n)
"Move the current commit (or command) N lines up.
If N is negative, move the commit down instead. With an active
region, move all the lines that the region touches, not just the
current line."
(interactive "p")
(git-rebase-move-line-down (- n)))