Commit Briefs

Thomas Adam

tog: implement +/- keymaps to resize the focussed split

Increase/decrease the currently active split. New dimensions persist for the tog session, irrespective of subsequent closures and new child views. suggested by and ok stsp@


Thomas Adam

tog: implement global 'S' key map to switch split mode

If in a vertical (horizontal) split, switch to horizontal (vertical), and make new split mode persist. ok op@


Thomas Adam

use got_privsep_flush_imsg instead of reinventing it

ok stsp@


Thomas Adam

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@


Thomas Adam

rework got_privesp_recv_tree to use got_privsep_recv_imsg

ok stsp@


Thomas Adam

portable: delta_cache: remove includes

Remove those includes which are searched for portably.


Thomas Adam

fix buf_alloca error handling

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


Thomas Adam

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.



Thomas Adam

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@


Thomas Adam

portable: regress: rework date command for Ubuntu

Don't rely on '-r' for date as it's not consistent across linuxses. Instead, expand the variables required and use '-d'. OK thomas@


Thomas Adam

portable: regress: fix fetch compilation

Add missing files for testing fetch.


Thomas Adam

portable: maintscripts: reverse cherrypicks

When cherry-picking commits from main, do so in reverse order so they match more linearly with main.





Thomas Adam

Xr gotweb(8) from got(1)


Thomas Adam

typo



Thomas Adam

add missing revoked_signers grammar to got.conf(5)

ok stsp@


Thomas Adam

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@


Thomas Adam

regress test SSH key revocations

ok stsp@


Thomas Adam

portable: maintscript: add header detection

Add detection for headers which are included portably, and remove them.


Thomas Adam

fix potential type mismatch between format specifier and argument

Cast printf argument of type time_t to long long to match the %lld format specifier on platforms where this might not be the case.


Thomas Adam

portable: add maintscripts

This introduces an area for helper scripts when dealing with -portable syncing from upstream, releases, etc. See the README.md file for further information.