Commits


CHANGES for 0.73


document TOG_VIEW_SPLIT_MODE


include system headers required for got_date.h directly, not indirectly


sync distfile list


document SSH-based signing and verification in got(1) and got.conf(5)


in tests, verify that tag -V behaves like tag -l plus signature verification


got tag -V is like tag -l with verification, fix option-conflicts accordingly


remove parts of tag_create_ssh_signed which just duplicate the tag_create test


add -v option to 'got tag' usage string


add option-conflict handling for 'got tag' -s and -V options


add -V option to 'got tag' usage string, and replace underscore with a hyphen


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@


got_date.h: add explicit #includes Don't rely on implicit/"hidden" includes, but rather add them to the header file so their inclusion doesn't result in missing values. Although not explicitly a functional change, this does help -portable. This ensures size_t/time_t are always present. OK @jrick


remove duplicate test_parseargs call spotted by op@


fix echo/printf order and actually run the test