Commit Briefs


d68f2c0e20 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@



cc63cb4edd Stefan Sperling

mention additional copyright holders in got(1)



2b16c2bca8 Stefan Sperling

Xr gotweb(8) from got(1)


ad8bd524a9 Stefan Sperling

typo



2eeb8068d7 Josh Rickmar

regress test SSH key revocations

ok stsp@


02a5c5d003 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@


ea2c9c36aa Josh Rickmar

add missing revoked_signers grammar to got.conf(5)

ok stsp@


b9a36ae5eb Christian Weisgerber

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.


9025e981e5 Stefan Sperling

bump version number


68ad340121 Stefan Sperling

CHANGES for 0.73 (tags/0.73)


619b3b4984 Stefan Sperling

document TOG_VIEW_SPLIT_MODE



400e716eb9 Stefan Sperling

sync distfile list






7881782691 Stefan Sperling

add -v option to 'got tag' usage string




2c986b8f7e Omar Polo

check for specific chars instead of using isspace(3)

Reminded by naddy and stsp; it was missing a cast to unsigned char to prevent issues on archs with signed chars and was too broad anyway. While here, drop an extra check immediately after. ok stsp@