Blob


1 # vc-got
3 This is an **experimental** Emacs VC back-end for the [Game of
4 Tree](http://gameoftrees.org/) version control system.
6 Use it at your own risk.
8 ------
10 To start using it, you need to add `Got` to `vc-handled-backends` and
11 make sure that `vc-got` is within your `load-path`. You shouldn't
12 require the library.
14 ```emacs-lisp
15 (cl-pushnew 'Got vc-handled-backends)
16 ```
18 With `use-package` something like this should be enough:
20 ```emacs-lisp
21 (use-package vc-got
22 :load-path "/path/to/vc-got/"
23 :init (cl-pushnew 'Got vc-handled-backends)
24 :defer t)
25 ```