Hash :
c932eeeb
Author :
Date :
2019-05-22T10:25:50
make 'got update' bump the base commit ID of unchanged files This change makes it actually possible to get around commit-time out-of-dateness by running 'got update'. The test added with this commit shows that our out-of-dateness check is currently too simplistic; an update is required between any two commit operations! It would be better to allow commits to proceed until a situation arises where file content must be merged.
| Git HTTP | https://git.kmx.io/thodg/got.git |
|---|---|
| Git SSH | git@git.kmx.io:thodg/got.git |
| Public access ? | public |
| Description | |
|
Users |
|
| Tags |
|
Got is a version control system which prioritizes ease of use and simplicity over flexibility. It is being developed exlusively on OpenBSD and most likely won't compile on other operating systems. To compile the Got tool suite on OpenBSD, run: $ make obj $ make $ mkdir ~/bin $ make install This will install the following commands to ~/bin: got (command line interface) tog (ncurses interface) and several helper programs from the libexec directory Tests will pass only after 'make install' because they rely on installed binaries in $PATH. Tests in the cmdline directory currently depend on git(1). $ doas pkg_add git $ make regress Man pages are not installed yet but can be viewed with mandoc: $ mandoc got/got.1 | less $ mandoc got/git-repository.5 | less $ mandoc got/got-worktree.5 | less $ mandoc tog/tog.1 | less