summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | | bloom.c: introduce core Bloom filter constructsGarima Singh2020-03-304-1/+188
| * | | | | | bloom.c: add the murmur3 hash implementationGarima Singh2020-03-307-0/+133
| * | | | | | commit-graph: define and use MAX_NUM_CHUNKSGarima Singh2020-03-301-2/+3
* | | | | | | Merge branch 'tb/commit-graph-fd-exhaustion-fix'Junio C Hamano2020-05-016-29/+33
|\ \ \ \ \ \ \
| * | | | | | | commit-graph: close descriptors after mmapJeff King2020-04-253-17/+8
| * | | | | | | commit-graph.c: gracefully handle file descriptor exhaustionTaylor Blau2020-04-232-2/+15
| * | | | | | | t/test-lib.sh: make ULIMIT_FILE_DESCRIPTORS available to testsTaylor Blau2020-04-232-9/+9
| * | | | | | | commit-graph.c: don't use discarded graph_name in errorTaylor Blau2020-04-231-1/+1
* | | | | | | | Merge branch 'tb/commit-graph-split-strategy'Junio C Hamano2020-05-019-73/+192
|\ \ \ \ \ \ \ \
| * | | | | | | | Revert "commit-graph.c: introduce '--[no-]check-oids'"Junio C Hamano2020-04-294-42/+4
| |/ / / / / / /
| * | | | | | | commit-graph.c: introduce '--[no-]check-oids'Taylor Blau2020-04-154-4/+42
| * | | | | | | commit-graph.h: replace 'commit_hex' with 'commits'Taylor Blau2020-04-154-31/+52
| * | | | | | | oidset: introduce 'oidset_size'Taylor Blau2020-04-152-0/+10
| * | | | | | | builtin/commit-graph.c: introduce split strategy 'replace'Taylor Blau2020-04-155-18/+66
| * | | | | | | builtin/commit-graph.c: introduce split strategy 'no-merge'Taylor Blau2020-04-155-9/+36
| * | | | | | | builtin/commit-graph.c: support for '--split[=<strategy>]'Taylor Blau2020-04-153-9/+33
| * | | | | | | t/helper/test-read-graph.c: support commit-graph chainsTaylor Blau2020-04-151-12/+1
* | | | | | | | Merge branch 'tb/reset-shallow'Junio C Hamano2020-05-015-69/+76
|\ \ \ \ \ \ \ \
| * | | | | | | | shallow.c: use '{commit,rollback}_shallow_file'Taylor Blau2020-04-245-16/+59
| * | | | | | | | t5537: use test_write_lines and indented heredocs for readabilityTaylor Blau2020-04-241-53/+17
* | | | | | | | | Merge branch 'dd/mailinfo-with-nul'Junio C Hamano2020-05-012-6/+58
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | mailinfo: disallow NUL character in mail's headerĐoàn Trần Công Danh2020-04-222-2/+10
| * | | | | | | | | mailinfo.c: avoid strlen on strings that can contains NULĐoàn Trần Công Danh2020-04-222-2/+48
| * | | | | | | | | t4254: merge 2 steps of a single testĐoàn Trần Công Danh2020-04-221-4/+2
| | |_|_|_|/ / / / | |/| | | | | | |
* | | | | | | | | Merge branch 'dl/test-must-fail-fixes-4'Junio C Hamano2020-05-017-18/+18
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | t9819: don't use test_must_fail with p4Denton Liu2020-04-201-1/+1
| * | | | | | | | | t9164: use test_must_fail only on git commandsDenton Liu2020-04-201-2/+2
| * | | | | | | | | t9160: use test_path_is_missing()Denton Liu2020-04-201-2/+2
| * | | | | | | | | t9141: use test_path_is_missing()Denton Liu2020-04-201-4/+4
| * | | | | | | | | t7508: don't use `test_must_fail test_cmp`Denton Liu2020-04-201-1/+1
| * | | | | | | | | t7408: replace incorrect uses of test_must_failDenton Liu2020-04-201-4/+4
| * | | | | | | | | t6030: use test_path_is_missing()Denton Liu2020-04-201-4/+4
* | | | | | | | | | Merge branch 'jk/build-with-right-curl'Junio C Hamano2020-05-011-5/+10
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | Makefile: avoid running curl-config unnecessarilyJeff King2020-04-051-2/+2
| * | | | | | | | | | Makefile: use curl-config --cflagsJeff King2020-03-271-1/+7
| * | | | | | | | | | Makefile: avoid running curl-config multiple timesJeff King2020-03-271-4/+3
| | |_|/ / / / / / / | |/| | | | | | | |
* | | | | | | | | | The fifth batchJunio C Hamano2020-04-301-0/+19
* | | | | | | | | | Merge branch 'ps/transactional-update-ref-stdin'Junio C Hamano2020-04-306-75/+363
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | update-ref: implement interactive transaction handlingPatrick Steinhardt2020-04-023-8/+255
| * | | | | | | | | | update-ref: read commands in a line-wise fashionPatrick Steinhardt2020-04-021-40/+45
| * | | | | | | | | | update-ref: move transaction handling into `update_refs_stdin()`Patrick Steinhardt2020-04-021-13/+14
| * | | | | | | | | | update-ref: pass end pointer instead of strbufPatrick Steinhardt2020-04-021-15/+15
| * | | | | | | | | | update-ref: drop unused argument for `parse_refname`Patrick Steinhardt2020-04-021-5/+5
| * | | | | | | | | | update-ref: organize commands in an arrayPatrick Steinhardt2020-04-021-12/+29
| * | | | | | | | | | strbuf: provide function to append whole linesPatrick Steinhardt2020-03-302-0/+16
| * | | | | | | | | | git-update-ref.txt: add missing wordPatrick Steinhardt2020-03-301-1/+1
| * | | | | | | | | | refs: fix segfault when aborting empty transactionPatrick Steinhardt2020-03-301-8/+10
* | | | | | | | | | | Merge branch 'en/fill-directory-exponential'Junio C Hamano2020-04-3010-201/+437
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | completion: fix 'git add' on paths under an untracked directoryElijah Newren2020-04-012-1/+6
| * | | | | | | | | | | Fix error-prone fill_directory() API; make it only return matchesElijah Newren2020-04-016-27/+18