Function: magit-stash--apply

magit-stash--apply is a byte-compiled function defined in magit-stash.el.

Signature

(magit-stash--apply ACTION STASH)

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-stash.el
(defun magit-stash--apply (action stash)
  (if (magit-git-version< "2.38.0")
      (magit-run-git "stash" action stash (and current-prefix-arg "--index"))
    (magit-stash--apply-1 action stash)
    (magit-refresh)))