Commits


if there are no commits to rebase, just forward the rebased branch's reference Problem found by kn@


Outright forbid reference names with a leading '-'. Matches behaviour documented in git-repository(5).


prevent 'got import' from creating a branch called "-"


convert tree entries from SIMPLEQ to an array


add -R option to 'got add' for recursive addition (patch by Tracey Emery)


add -c option to 'got branch', replacing the optional second argument


hide EINTR again when got exits due to Ctrl-C


try harder not to hide errors from helper programs when got(1) exits


rename 'got init' and 'got import' default branch to "main"; patch by kmos@


show commit date's century in 'got blame' output (patch by Tracey Emery) tests adjusted by me


always show the input path when realpath(3) returns an error


preserve the log message when an error occurs during import, as intended


preserve the tag message when an error occurs during tagging, as intended


preserve the log message when an error occurs during commit, as intended


show file mode differences when diffing trees


catch and reject integration into the freshly rebased branch


add 'got integrate' command


prevent a NULL deref in an error path of got.c's diff_trees()


show bad reference names in error messages to make such errors more clear


add -w (ignore whitespace) option to 'got diff'


make 'got branch' without args show work tree's branch; requested by benno@


show temporary branch in 'got branch -l' during rebase and histedit


getline: fix the return type to ssize_t and small nits


plug logmsg memory leak in cmd_import; found by jj@ with scan-build


missing NULL check