Commit Briefs


211cfef0b2 Stefan Sperling

use time-based rate-limiting for gotadmin progress output

Suggested by naddy some time ago. ok tracey


7d69d862a0 Stefan Sperling

let gotadmin find the repository automatically if invoked in a work tree

Move a small amount of code from worktree.c to a new file worktree_open.c, which contains everything required to open and close a work tree and inspect some of its basic parameters. This can be used by gotadmin. ok tracey


b343c297c6 Stefan Sperling

use a bloom filter to avoid pointless pack index searches


321a74a5ca Christian Weisgerber

garbage-collect unused "dist" target from subdirectory Makefiles

ok stsp


d65a88a2f0 Stefan Sperling

move duplicated dial_ssh() and dial_git() functions into a common file

These functions are used by 'got send' and 'got fetch' in order to open network connections to a server. Move them into new file lib/dial.c and declare relevant functions in got_dial.h and lib/got_lib_dial.h. No functional change.


f8a36e2210 Stefan Sperling

add 'got send' command for sending changes to remote repositories

Known to work against git-daemon and github Git server implementations. Tests by abieber, naddy, jrick, and myself. Man page additions reviewed by Lucas.


fe621944e8 Stefan Sperling

merge new diff implementation from the git.gameoftrees.org diff.git repository

This new diff implementation was started by Neels Hofmeyr during the u2k20 hackathon and now replaces diffreg.c code lifted from the OpenBSD base system. The integration of this code into Got was done by me. Got now uses the patience diff algorithm by default. The diff.git repository will remain the primary repository for the diff code, which already compiles and runs on other operating systems such as Linux. Any fixes and improvements for files inherited from the diff.git repository should be written against that repository and synced to got.git afterwards.


0f43fed90b Stefan Sperling

add got.conf(5) to MAN list in Makefile




ab2f42e760 Stefan Sperling

cache delta data buffers in an LRU cache





4c9641fdb6 Stefan Sperling

fix and simplify blame algorithm

Always diff against latest version of file. This is much easier since there is no need to keep track of lines shifting around.




c429614457 Stefan Sperling

WIP commit implementation


9e672c7443 Stefan Sperling

implement got_ref_write()


6353ad76e4 Stefan Sperling

make 'got update' merge file edits


25a58941e2 Stefan Sperling

remove the pathset abstraction again; replaced by RB tree



f054b67ad0 Stefan Sperling

remove object_idcache; use object_idset instead


6bef87be90 Stefan Sperling

move object cache out of repository.c to its own file