aboutsummaryrefslogtreecommitdiffstats
path: root/pack-write.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2025-07-16object-file: get rid of `the_repository` in `finalize_object_file()`Patrick Steinhardt1-7/+9
2025-07-01odb: get rid of `the_repository` in `odb_mkstemp()`Patrick Steinhardt1-4/+6
2025-03-10pack-write: stop depending on `the_repository` and `the_hash_algo`Patrick Steinhardt1-28/+27
2025-03-10csum-file: stop depending on `the_repository`Patrick Steinhardt1-6/+6
2025-03-05Merge branch 'ps/path-sans-the-repository'Junio C Hamano1-4/+6
2025-02-28path: adjust last remaining users of `the_repository`Patrick Steinhardt1-4/+6
2025-02-10Merge branch 'ps/hash-cleanup'Junio C Hamano1-9/+10
2025-01-31global: adapt callers to use generic hash context helpersPatrick Steinhardt1-7/+7
2025-01-31hash: stop typedeffing the hash contextPatrick Steinhardt1-1/+1
2025-01-21pack-write: pass hash_algo to internal functionsKarthik Nayak1-14/+16
2025-01-21pack-write: pass hash_algo to `write_rev_file()`Karthik Nayak1-9/+12
2025-01-21pack-write: pass hash_algo to `write_idx_file()`Karthik Nayak1-6/+8
2025-01-21pack-write: pass repository to `index_pack_lockfile()`Karthik Nayak1-3/+3
2025-01-21pack-write: pass hash_algo to `fixup_pack_header_footer()`Karthik Nayak1-14/+14
2024-12-04config: make `delta_base_cache_limit` a non-global variableKarthik Nayak1-0/+1
2024-10-10Merge branch 'ps/leakfixes-part-8'Junio C Hamano1-19/+23
2024-10-02Merge branch 'tb/weak-sha1-for-tail-sum'Junio C Hamano1-3/+4
2024-09-30pack-write: fix return parameter of `write_rev_file_order()`Patrick Steinhardt1-19/+23
2024-09-27pack-objects: use finalize_object_file() to rename pack/idx/etcTaylor Blau1-3/+4
2024-09-12environment: make `get_object_directory()` accept a repositoryPatrick Steinhardt1-1/+2
2024-06-14global: introduce `USE_THE_REPOSITORY_VARIABLE` macroPatrick Steinhardt1-0/+2
2024-06-14hash: require hash algorithm in `hasheq()`, `hashcmp()` and `hashclr()`Patrick Steinhardt1-1/+2
2023-12-26treewide: remove unnecessary includes in source filesElijah Newren1-1/+0
2023-07-05treewide: remove unnecessary includes for wrapper.hCalvin Wan1-1/+0
2023-06-21object-store-ll.h: split this header out of object-store.hElijah Newren1-0/+1
2023-06-21repository: remove unnecessary include of path.hElijah Newren1-0/+1
2023-04-28Merge branch 'tb/enable-cruft-packs-by-default'Junio C Hamano1-6/+7
2023-04-27Merge branch 'tb/pack-revindex-on-disk'Junio C Hamano1-0/+2
2023-04-18pack-write.c: plug a leak in stage_tmp_packfiles()Taylor Blau1-6/+8
2023-04-13pack-write.c: plug a leak in stage_tmp_packfiles()Taylor Blau1-0/+2
2023-04-11treewide: remove double forward declaration of read_in_fullElijah Newren1-0/+1
2023-04-11treewide: remove unnecessary cache.h inclusionElijah Newren1-1/+1
2023-04-11treewide: be explicit about dependence on pack-revindex.hElijah Newren1-0/+1
2023-03-21environment.h: move declarations for environment.c functions from cache.hElijah Newren1-0/+1
2023-03-21treewide: be explicit about dependence on gettext.hElijah Newren1-0/+1
2023-02-23cache.h: remove dependence on hex.h; make other files include it explicitlyElijah Newren1-0/+1
2022-12-15git: remove duplicate includesSeija Kijin1-1/+0
2022-06-16pack-write: drop always-NULL parameterDerrick Stolee1-11/+6
2022-05-26pack-mtimes: support writing pack .mtimes filesTaylor Blau1-0/+77
2022-05-26chunk-format.h: extract oid_version()Taylor Blau1-13/+2
2022-05-26pack-write: pass 'struct packing_data' to 'stage_tmp_packfiles'Taylor Blau1-0/+1
2022-03-10core.fsync: introduce granular fsync control infrastructureNeeraj Singh1-6/+7
2021-09-20Merge branch 'tb/pack-finalize-ordering'Junio C Hamano1-29/+28
2021-09-15Merge branch 'ab/reverse-midx-optim'Junio C Hamano1-0/+3
2021-09-09pack-write: split up finish_tmp_packfile() functionÆvar Arnfjörð Bjarmason1-9/+13
2021-09-09pack-write.c: rename `.idx` files after `*.rev`Taylor Blau1-1/+1
2021-09-09pack-write: refactor renaming in finish_tmp_packfile()Ævar Arnfjörð Bjarmason1-21/+16
2021-09-07pack-write: skip *.rev work when not writing *.revÆvar Arnfjörð Bjarmason1-0/+3
2021-08-25use xopen() to handle fatal open(2) failuresRené Scharfe1-6/+2
2021-04-08Merge branch 'tb/reverse-midx'Junio C Hamano1-11/+25