Commit Briefs

280d06442f Thomas Adam

change example to use useradd; ok stsp@


a5f25a125b Thomas Adam

send a newline first if erroring out in plaintext mode

otherwise, the webserver might complain: 'upstream sent invalid header: "gotwebd\x20..." while reading response header from upstream' ok stsp@


3d47d5be9c Thomas Adam

require space between commit author name and email, for Git compatibility

Allowing such author fields breaks 'got send' towards Github for affected commits because git-index-pack --strict will error out on the server: $ git index-pack --strict pack-de791fb6a3a1961e44ac5d98d72fd533bf9277c8.pack error: object 5d6bde9eaaf27f41ae8fa7112bb45e489d3c16b9: missingSpaceBeforeEmail: invalid author/committer line - missing space before email fatal: fsck error in packed object problem encountered by landry@ ok op@






4231e6b557 Thomas Adam

got-fetch-pack: fix wrong memmove length leading to dubious checksum failures

ok millert tracey


92ddd9f669 Thomas Adam

portable: compat/sockaddr-linux: add licence header

Add the standard header to this file to indicate its licence.



4f218b0c73 Thomas Adam

gotctl: simplify socket_path handling

ok stsp@


635d7427c5 Thomas Adam

remove umask TODO


a2c162ebae Thomas Adam

respect umask when creating or changing files and directories

This behaviour is already documented in got-worktree(5) but wasn't actually implemented. ok stsp@


0df6b4df0f Thomas Adam

man page fixes suggested by Josiah Frentsos


c902213d3f Thomas Adam

add gotctl(8); initially supported commands are 'info' and 'stop'

This will be used by an upcoming regress test suite for gotd(8). ok tracey


a0603cf4f5 Thomas Adam

fix syntax error in gotsh.1 sshd_config example


cc4cc677bd Thomas Adam

remove sendfd pledge promise from gotd repo_read process

Have the parent process send one end of the pipe directly to gotsh(1), such that repo_write can run without "sendfd". Combining "sendfd" and "recvfd" in the same process is frowned upon. ok tracey


e485d53cce Thomas Adam

change add_delta to take an off_t instead of size_t.

add_delta already calls got_delta_open casting the size_t to off_t, and all the add_delta callers pass an off_t anyway; fixes an implicit off_t truncation. ok stsp@


1dc5ea0c03 Thomas Adam

stop installing git-{receive,upload}-pack symlinks to gotsh in ~/bin

Having those links in the user's PATH can make our send/fetch regression tests fail. We do want to talk to git-daemon during those tests, and these symlinks can get in the way of that.


66e6097f5d Thomas Adam

convert got_pack' filesize to off_t; ok stsp@


2aef7b234d Thomas Adam

plug a memory leak on error in got_gotconfig_read()

ok op@





fe3b549558 Thomas Adam

fix off_t type mismatch in gotd

see e082ed67; ok stsp@