Commits
- Commit:
36751b1b2e8389b739a0f7aacf7d8e5371d898bf
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
remove needless header inclusion; lib/pack.c does not need got_opentemp.h
- Commit:
6f5cb1bdf76f3043ac81d413349d354738180769
- From:
- Omar Polo <op@omarpolo.com>
- Date:
fix path to the temp file used to accumulate the patch edits
ok stsp
- Commit:
bfbccd0a546344106bb6e22074678a396d7bcad0
- From:
- Omar Polo <op@omarpolo.com>
- Date:
use test(1) -eq and -ne to compare integers; ok tb
- Commit:
fd79e2e02793239b5efc0d2ffda3c44a49a85e8a
- From:
- Omar Polo <op@omarpolo.com>
- Date:
typos
- Commit:
e9ce266e31923cc339954b331d273d9bba543f6f
- From:
- Omar Polo <op@omarpolo.com>
- Date:
add `got patch' command for applying unified diffs
- Commit:
805253d5155091691f7cf36e54134cc87b2ea91a
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
fix level of indirection
ok stsp
- Commit:
3a12860c3cbeae377b90f5526d0b75ccdb01bfc4
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
make the URI parser tolerate trailing slashes at the end of the input URI
ok naddy
- Commit:
bed0038563e7b63afa004a00b5c3d1c41a9a733b
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
apply time-based rate-limiting to got-send-pack upload progress output
- Commit:
dcb64fea5fbc0fb5f5cd1947bef3b5d09e266a79
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
apply time-based rate-limiting to got-fetch-pack download progress output
- Commit:
d0f1e2f1b9f0e472831dc88cc9885c61d52c87f1
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
apply time-based rate-limiting to got-index-pack progress output
- Commit:
e3f8625647b5837c386e831cce4e69268343b5d9
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
explicitly include <endian.h> for be32toh()
- Commit:
931651ba231ae793da8f4382fa9bc3f795591477
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
bump version number
- Commit:
4c91cf3d23b15d9574a47ddf0f4e7bf1a9631028
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
CHANGES for 0.67
- Commit:
3e1665345ba868287dfd11c63dbeb10ce68fb922
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
const-ify command and option tables
ok stsp
- Commit:
e546352ca5c53b183a9f3e39ce7c28db035c8cf4
- From:
- Josh Rickmar <jrick@zettaport.com>
- Date:
remove stray tab that snuck in
- Commit:
bdc78ba63c2d4a419a35a7e50abc97c2da8f32de
- From:
- Josh Rickmar <jrick@zettaport.com>
- Date:
display GMT offset in cat command
ok stsp
- Commit:
8934ea8b1b31166ea1f3f857e6f51f8dd6a999a2
- From:
- Omar Polo <op@omarpolo.com>
- Date:
factorize imsg_clear calls after imsg_flush failures
imsg_clear frees and closes resources allocated as part of enqueueing
imsgs so it's a no-op after reads.
discussed with and ok stsp@
- Commit:
688fe08b75a31d11eaf64a44751f903bdfa61b68
- From:
- Omar Polo <op@omarpolo.com>
- Date:
fix fd leak in got_fetch_pack, ok stsp@
- Commit:
28526235ae6336b37d0f79a3c266c3a92587f279
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix pack.sh test failure from reuse-deltas patch by tweaking progress output
- Commit:
67fd68496517d3103b130a1085efdd4591bd7416
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
reuse existing deltas when creating pack files
tested by thomas, naddy, and myself
- Commit:
b593496508f3e82abafe91570d78867dcbcae871
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
shrink the width of formatted output fields to their expected size
Replace FMT_SCALED_STRSIZE with (FMT_SCALED_STRSIZE - 2) as field
width when formatting output for printing. FMT_SCALED_STRSIZE
includes space for a nul byte and a minus sign. Output values
are expected to be always positive here.
ok stsp
- Commit:
f6027426102430eb80a6df7ce1bf2e31d15cf85d
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
consistently match size of hash variables to that returned by murmurhash
ok millert stsp
- Commit:
32b5305fbed2d1a4c55b0eef6b93349b93ba7db0
- From:
- Omar Polo <op@omarpolo.com>
- Date:
new test: `got diff' on files matched by an ignore pattern
- Commit:
2b474c2514b417c6ead14e07c19c19c97dcbf7ff
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
use murmurhash instead of sha1 for deltification blocks; suggested by ori
- Commit:
1ac8bad908004860ef7d6042ee15a508f192a540
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
reduce minimum deltification chunk size to 32; suggested by ori