• Show log

    Commit

  • Hash : f6912001
    Author : Stefan Sperling
    Date : 2019-05-15T06:51:55

    spawn more pack file helpers again now that leaks got fixed /usr/src updates have become slower for some reason and my best guess is that caching of packed data has become less effective with df613bb4d8662c28a9888714a80ca572bff9d924 (leaks were subsequently fixed by 2cb49fa8fb84f3a8fc2eb6036a6bd9b64c57e347 and by 0dd5271bd8f2a4f92ac3536fcc493eebc39b86e5)

  • README

  • 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