Function: vc-git-stash-apply
vc-git-stash-apply is an interactive and byte-compiled function
defined in vc-git.el.gz.
Signature
(vc-git-stash-apply NAME)
Documentation
Apply stash NAME.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-git.el.gz
(defun vc-git-stash-apply (name)
"Apply stash NAME."
(interactive (list (vc-git-stash-read "Apply stash: ")))
(vc-git-command "*vc-git-stash*" 0 nil "stash" "apply" "-q" name)
(vc-resynch-buffer (vc-git-root default-directory) t t))