Function: magit-stash-worktree

magit-stash-worktree is an autoloaded, interactive and byte-compiled function defined in magit-stash.el.

Signature

(magit-stash-worktree MESSAGE &optional INCLUDE-UNTRACKED)

Documentation

Create a stash of unstaged changes in the working tree.

Untracked files are included according to infix arguments. One prefix argument is equivalent to --include-untracked while two prefix arguments are equivalent to --all.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-stash.el
;;;###autoload
(defun magit-stash-worktree (message &optional include-untracked)
  "Create a stash of unstaged changes in the working tree.
Untracked files are included according to infix arguments.
One prefix argument is equivalent to `--include-untracked'
while two prefix arguments are equivalent to `--all'."
  (interactive (magit-stash-read-args))
  (magit-stash-save message nil t include-untracked t 'index))