Function: vc-git-stash-pop

vc-git-stash-pop is an interactive and byte-compiled function defined in vc-git.el.gz.

Signature

(vc-git-stash-pop NAME)

Documentation

Pop stash NAME.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-git.el.gz
(defun vc-git-stash-pop (name)
  "Pop stash NAME."
  (interactive (list (vc-git-stash-read "Pop stash: ")))
  (vc-git-command "*vc-git-stash*" 0 nil "stash" "pop" "-q" name)
  (vc-resynch-buffer (vc-git-root default-directory) t t))