Function: magit-snapshot-both
magit-snapshot-both is an autoloaded, interactive and byte-compiled
function defined in magit-stash.el.
Signature
(magit-snapshot-both &optional INCLUDE-UNTRACKED)
Documentation
Create a snapshot of the index and 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-20260822.1158/magit-stash.el
;;;###autoload
(defun magit-snapshot-both (&optional include-untracked)
"Create a snapshot of the index and 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-snapshot-read-args))
(magit-snapshot-save t t include-untracked t))