Blob


1 Got is a version control system which prioritizes ease of use and
2 simplicity over flexibility. It is being developed exlusively on
3 OpenBSD and most likely won't compile on other operating systems.
5 To compile the Got tool suite on OpenBSD, run:
7 $ make obj
8 $ make
9 $ mkdir ~/bin
10 $ make install
12 This will install the following commands to ~/bin:
14 got (command line interface)
15 tog (ncurses interface)
16 and several helper programs from the libexec directory
18 Tests will pass only after 'make install' because they rely on installed
19 binaries in $PATH. Tests in the cmdline directory currently depend on git(1).
21 $ doas pkg_add git
22 $ make regress
24 Man pages are not installed yet but can be viewed with mandoc:
26 $ mandoc got/got.1 | less
27 $ mandoc got/git-repository.5 | less
28 $ mandoc tog/tog.1 | less