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

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

Signature

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

Documentation

Apply the stash at point.

Key Bindings

Source Code

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