Function: vc-git-uncommit-revisions-from-end

vc-git-uncommit-revisions-from-end is a byte-compiled function defined in vc-git.el.gz.

Signature

(vc-git-uncommit-revisions-from-end REV)

Documentation

Mixed reset back to REV.

It is an error if REV is not on the current branch.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-git.el.gz
(defun vc-git-uncommit-revisions-from-end (rev)
  "Mixed reset back to REV.
It is an error if REV is not on the current branch."
  (vc-git--assert-revision-on-branch rev (vc-git--current-branch))
  (vc-git-command nil 0 nil "reset" "--mixed" rev))