Function: vc-create-repo

vc-create-repo is an interactive and byte-compiled function defined in vc.el.gz.

Signature

(vc-create-repo BACKEND)

Documentation

Create an empty repository in the current directory.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc.el.gz
(defun vc-create-repo (backend)
  "Create an empty repository in the current directory."
  (interactive (list (vc-read-backend "Create repository for: ")))
  (vc-call-backend backend 'create-repo))