Commits
- Commit:
d89a2828a39d1ae3d6c68b2d325ce6a3d0ca768a
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
delta_cache.c needs to include <stdint.h>; unbreaks -portable build on ubuntu
- Commit:
d68f2c0e20f502d7bea2f0136527683f830b3d6c
- From:
- Josh Rickmar <jrick@zettaport.com>
- Date:
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@
- Commit:
bd957eacd0877b6f82a7dea14c185f3eb1e5b41c
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
mention Austin Appleby's public domain code for completeness
- Commit:
cc63cb4edd4df1d9aba5d0759b3165b8fdf2278e
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
mention additional copyright holders in got(1)
- Commit:
49be94bd99f72607389ef839d334576fb2ffe713
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add two more authors how I missed during my sweep of commit history
- Commit:
2b16c2bca8a81aa17b5ed167ab6c64b2ed90b947
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
Xr gotweb(8) from got(1)
- Commit:
ad8bd524a993d8634c1d1ac2253d5d64753125de
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
typo
- Commit:
8ca658b94f4fab88f6ce202bc8519af053b607f8
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
long overdue update of AUTHORS lists in man pages; based on commit history
- Commit:
2eeb8068d7a343e3a924b0c379de8393e8231fef
- From:
- Josh Rickmar <jrick@zettaport.com>
- Date:
regress test SSH key revocations
ok stsp@
- Commit:
02a5c5d00338c9549f6a399391841bd8219d91cf
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
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@
- Commit:
ea2c9c36aa409c447e37aed9c75777adb9e36274
- From:
- Josh Rickmar <jrick@zettaport.com>
- Date:
add missing revoked_signers grammar to got.conf(5)
ok stsp@
- Commit:
b9a36ae5ebce5fb8ce9d944a31210917b32c71d8
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
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.
- Commit:
9025e981e506fbd72152fef7279739a1866c5f9c
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
bump version number
- Commit:
68ad340121fd613224aa16f2d51a5f8aea9380ac
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
CHANGES for 0.73
- Commit:
619b3b4984e59125a22c5067ab0c9cc61a3e53a7
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
document TOG_VIEW_SPLIT_MODE
- Commit:
1b2dedff6127800c1ef287be60c5b3a4612a3c44
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
include system headers required for got_date.h directly, not indirectly
- Commit:
400e716eb939043fdc78e8bdbd0973dabcbb07cf
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
sync distfile list
- Commit:
10c4445c863f88e882efced06b63becbfd07d940
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
document SSH-based signing and verification in got(1) and got.conf(5)
- Commit:
48f194072bb9a53b38b7ccd52d49306033ba7414
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
in tests, verify that tag -V behaves like tag -l plus signature verification
- Commit:
ef98a369796fc222fed7184de02b28622b5b1770
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
got tag -V is like tag -l with verification, fix option-conflicts accordingly
- Commit:
49a2d94a5f7df3001e60ade1362ad31c2895a496
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
remove parts of tag_create_ssh_signed which just duplicate the tag_create test
- Commit:
78817826917980c893186ca523093b97061f40d5
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add -v option to 'got tag' usage string
- Commit:
153d5e5853a81c12e6cca6d33811d97ab94768bb
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add option-conflict handling for 'got tag' -s and -V options
- Commit:
ca61cecaa7d978cae3b4292c2f16001a71e77ec6
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add -V option to 'got tag' usage string, and replace underscore with a hyphen
- Commit:
2c986b8f7e0c4aa36f452ee05715a26fac32c39e
- From:
- Omar Polo <op@omarpolo.com>
- Date:
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@