Function: git-rebase-kill-line

git-rebase-kill-line is an interactive and byte-compiled function defined in git-rebase.el.

Signature

(git-rebase-kill-line)

Documentation

Comment the current action line.

If the action line is already commented, then uncomment it. If the region is active, act on all lines touched by the region.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/git-rebase.el
(defun git-rebase-kill-line ()
  "Comment the current action line.
If the action line is already commented, then uncomment it.
If the region is active, act on all lines touched by the region."
  (interactive)
  (git-rebase-set-action nil))