author | Junio C Hamano <gitster@pobox.com> | |
Tue, 19 Jan 2010 05:29:47 +0000 (21:29 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 19 Jan 2010 05:29:47 +0000 (21:29 -0800) |
* maint-1.6.2:
base85: Make the code more obvious instead of explaining the non-obvious
base85: encode_85() does not use the decode table
base85 debug code: Fix length byte calculation
checkout -m: do not try to fall back to --merge from an unborn branch
branch: die explicitly why when calling "git branch [-a|-r] branchname".
textconv: stop leaking file descriptors
commit: --cleanup is a message option
git count-objects: handle packs bigger than 4G
t7102: make the test fail if one of its check fails
Conflicts:
diff.c
base85: Make the code more obvious instead of explaining the non-obvious
base85: encode_85() does not use the decode table
base85 debug code: Fix length byte calculation
checkout -m: do not try to fall back to --merge from an unborn branch
branch: die explicitly why when calling "git branch [-a|-r] branchname".
textconv: stop leaking file descriptors
commit: --cleanup is a message option
git count-objects: handle packs bigger than 4G
t7102: make the test fail if one of its check fails
Conflicts:
diff.c
1 | 2 | |||
---|---|---|---|---|
base85.c | patch | | diff1 | | diff2 | | blob | history |
builtin-branch.c | patch | | diff1 | | diff2 | | blob | history |
builtin-checkout.c | patch | | diff1 | | diff2 | | blob | history |
builtin-commit.c | patch | | diff1 | | diff2 | | blob | history |
diff.c | patch | | diff1 | | diff2 | | blob | history |
t/t5403-post-checkout-hook.sh | patch | | diff1 | | diff2 | | blob | history |
diff --cc base85.c
Simple merge
diff --cc builtin-branch.c
Simple merge
diff --cc builtin-checkout.c
Simple merge
diff --cc builtin-commit.c
Simple merge
diff --cc diff.c
index f0b580c1503147d093d928915ead2c5f88a0042b,9ec5767709898af88d83256c6ea98d74863042d8..ad5c0a20ee013a7f13ec9b0da1525bd5fdeafa70
+++ b/diff.c
if (start_command(&child) != 0 ||
strbuf_read(&buf, child.out, 0) < 0 ||
finish_command(&child) != 0) {
+ close(child.out);
+ strbuf_release(&buf);
remove_tempfile();
error("error running textconv command '%s'", pgm);
return NULL;
diff --cc t/t5403-post-checkout-hook.sh
Simple merge