Commit Briefs

Omar Polo

use got_privsep_flush_imsg instead of reinventing it

ok stsp@


Omar Polo

get rid of unneeded recv_imsg_error calls

got_privsep_recv_imsg users don't need to bother to look whether the imsg type is GOT_IMSG_ERROR because got_privsep_recv_imsg already takes care of that and turns GOT_IMSG_ERROR into `struct got_error's automatically. ok stsp@


Omar Polo

rework got_privesp_recv_tree to use got_privsep_recv_imsg

ok stsp@


Omar Polo

fix buf_alloca error handling

Left-over from how OpenRCS/OpenCVS do error handling. OK stsp@


Stefan Sperling

regress: use bs=1M for dd, not bs=1m; fixes -portable test failure on ubuntu

GNU dd only accepts upper-case letters for the size units.



Josh Rickmar

add signer_id option to got.conf(5)

Setting this option will cause 'got tag' to sign all created tags using the SSH key, unless overridden by the -s flag. ok stsp@





Stefan Sperling

Xr gotweb(8) from got(1)


Stefan Sperling

typo



Josh Rickmar

regress test SSH key revocations

ok stsp@


Stefan Sperling

move 'got init' command to 'gotadmin init'

This functionality is better suited for gotadmin because it is technically a server-side repository operation when we consider the 'got' tool as the client-side tool. I have plans to move 'got import' into gotadmin as well. ok op@