Function: vc-git-stash-pop-at-point

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

Signature

(vc-git-stash-pop-at-point)

Documentation

Pop the stash at point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-git.el.gz
(defun vc-git-stash-pop-at-point ()
  "Pop the stash at point."
  (interactive)
  (let (vc-dir-buffers) ; Likewise.
    (vc-git-stash-pop (format "stash@%s" (vc-git-stash-get-at-point (point)))))
  (vc-dir-refresh))