Commit Briefs


bb27d0d133 Thomas Adam

sync with OpenBSD parse.y

Explicitly cast "char" to "unsigned char" when assigned to "int" to prevent sign extension from breaking comparions against EOF or passing invalid arguments to ctype functions.




33acf1a27b Thomas Adam

limit delta chain length in newly created pack files to 32 deltas

Our former limit was 128 which is fairly high. Git uses 50 by default. A smaller limit results in slightly larger pack files but makes both packing and unpacking faster.



0af444f544 Thomas Adam

remove unused internal raw object API functions


8ab9215ce4 Thomas Adam

cache raw objects in order to speed up gotadmin pack



c75a6067f1 Thomas Adam

add missing calls to got_repo_close() in gotadmin.c


dd3af45a9c Thomas Adam

add missing error checks in got_object_raw_open()






3ca3c94dcc Thomas Adam

rework murmurhash2() to avoid potential unaligned memory access

pointed out by naddy@ ok millert@



7d76c4e74f Thomas Adam

fix wrong function in error string of emitdelta()



40d16f06b4 Thomas Adam

sync dist file list


8528beeff9 Thomas Adam

do not skip ignored directories in 'got status' if they contain tracked files

Fixes regression introduced by commit 41f061b2f459318f3738f59d7676efccc4beb344 where tracked files inside an ignored directory were reported as missing.




f1417e9f1c Thomas Adam

sort and de-duplicate work tree path command line arguments

This is important in cases like 'got diff file.txt file.txt' which should only show the diff for file.txt once. suggested by kn@


b6c8e5e0ed Thomas Adam

fix a segfault in edscript() introduced by my previous commit

Found by our cherrypick regression tests.