summaryrefslogtreecommitdiff
path: root/pack-check.c
AgeCommit message (Expand)AuthorFilesLines
2026-08-24Merge branch 'js/pack-objects-delta-size-t'Junio C Hamano1-2/+2
2026-08-13packfile, git-zlib: widen `use_pack()` and zstream avail fields to `size_t`Johannes Schindelin1-2/+2
2026-08-05odb/streaming: rename `struct odb_read_stream`Patrick Steinhardt1-2/+2
2026-07-07hash: use git_hash_init() consistentlyJeff King1-1/+1
2026-06-15packfile: widen unpack_entry()'s size out-parameter to size_tJohannes Schindelin1-3/+2
2026-05-09odb, packfile: use size_t for streaming object sizesJohannes Schindelin1-2/+4
2026-03-23builtin/fsck: stop using `the_repository` when checking packed objectsPatrick Steinhardt1-3/+4
2026-02-23pack-check: fix verification of large objectsPatrick Steinhardt1-1/+1
2026-02-23object-file: adapt `stream_object_signature()` to take a streamPatrick Steinhardt1-3/+9
2025-07-01object-store: rename files to "odb.{c,h}"Patrick Steinhardt1-1/+1
2025-04-15object-store: merge "object-store-ll.h" and "object-store.h"Patrick Steinhardt1-1/+1
2025-03-10pack-check: stop depending on `the_repository`Patrick Steinhardt1-6/+5
2025-03-10environment: move access to "core.bigFileThreshold" into repo settingsPatrick Steinhardt1-1/+2
2025-03-10csum-file: stop depending on `the_repository`Patrick Steinhardt1-1/+1
2025-01-31global: adapt callers to use generic hash context helpersPatrick Steinhardt1-2/+2
2025-01-31hash: stop typedeffing the hash contextPatrick Steinhardt1-1/+1
2024-12-06global: mark code units that generate warnings with `-Wsign-compare`Patrick Steinhardt1-0/+1
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-2/+3
2023-12-26treewide: remove unnecessary includes in source filesElijah Newren1-1/+0
2023-06-21object-store-ll.h: split this header out of object-store.hElijah Newren1-1/+1
2023-04-11treewide: remove cache.h inclusion due to object-file.h changesElijah Newren1-1/+1
2023-04-11object-file.h: move declarations for object-file.c functions from cache.hElijah Newren1-0/+1
2023-03-21environment.h: move declarations for environment.c functions from cache.hElijah Newren1-0/+1
2023-02-23cache.h: remove dependence on hex.h; make other files include it explicitlyElijah Newren1-0/+1
2022-02-25object-file API: have hash_object_file() take "enum object_type"Ævar Arnfjörð Bjarmason1-1/+1
2022-02-25object-file API: split up and simplify check_object_signature()Ævar Arnfjörð Bjarmason1-3/+6
2022-02-25object API users + docs: check <0, not !0 with check_object_signature()Ævar Arnfjörð Bjarmason1-1/+1
2021-10-25Merge branch 'ab/fsck-unexpected-type'Junio C Hamano1-1/+2
2021-10-01fsck: report invalid object type-path combinationsÆvar Arnfjörð Bjarmason1-1/+2
2021-06-28csum-file: introduce checksum_valid()Taylor Blau1-10/+1
2020-11-16fsck: correctly compute checksums on idx files larger than 4GBJeff King1-4/+4
2020-11-16compute pack .idx byte offsets using size_tJeff King1-1/+1
2020-02-24pack-check: push oid lookup into loopJeff King1-13/+10
2020-02-24pack-check: convert "internal error" die to a BUG()Jeff King1-1/+2
2020-01-31sha1-file: allow check_object_signature() to handle any repoMatheus Tavares1-1/+1
2020-01-31pack-check: use given repo's hash_algo at verify_packfile()Matheus Tavares1-5/+5
2018-11-12pack-check.c: remove the_repository referencesNguyễn Thái Ngọc Duy1-4/+5
2018-08-29convert "hashcmp() != 0" to "!hasheq()"Jeff King1-3/+3
2018-04-26packfile: add repository argument to unpack_entryStefan Beller1-1/+2
2018-04-11Merge branch 'sb/object-store'Junio C Hamano1-0/+1
2018-03-26object-store: move packed_git and packed_git_mru to object storeStefan Beller1-0/+1
2018-03-14sha1_file: convert check_sha1_signature to struct object_idbrian m. carlson1-2/+2
2018-03-06Merge branch 'bw/c-plus-plus'Junio C Hamano1-1/+1
2018-02-14object: rename function 'typename' to 'type_name'Brandon Williams1-1/+1
2018-02-02pack-check: convert various uses of SHA-1 to abstract formsbrian m. carlson1-16/+16
2017-08-23pack: move open_pack_index(), parse_pack_index()Jonathan Tan1-0/+1
2017-05-08Convert the verify_pack callback to struct object_idbrian m. carlson1-11/+14
2016-10-10Merge branch 'rs/qsort'Junio C Hamano1-1/+1
2016-09-29Merge branch 'jk/verify-packfile-gently'Junio C Hamano1-5/+2