aboutsummaryrefslogtreecommitdiffstats
path: root/pack-check.c
AgeCommit message (Expand)AuthorFilesLines
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
2016-09-29use QSORTRené Scharfe1-1/+1
2016-09-22verify_packfile: check pack validity before accessing dataJeff King1-5/+2
2016-07-13fsck: use streaming interface for large blobs in packNguyễn Thái Ngọc Duy1-2/+21
2016-02-22convert trivial cases to ALLOC_ARRAYJeff King1-1/+1
2015-12-01verify_pack: do not ignore return value of verification functionDavid Turner1-1/+1
2011-11-06fsck: print progressNguyễn Thái Ngọc Duy1-3/+11
2011-11-06fsck: avoid reading every object twiceNguyễn Thái Ngọc Duy1-3/+10
2011-11-06verify_packfile(): check as many object as possible in a packNguyễn Thái Ngọc Duy1-7/+2
2011-06-10zlib: zlib can only process 4GB at a timeJunio C Hamano1-2/+2
2011-04-03sparse: Fix errors and silence warningsStephen Boyd1-1/+1
2011-03-16standardize brace placement in struct definitionsJonathan Nieder1-2/+1
2010-08-22Typos in code comments, an error message, documentationRalf Wildenhues1-1/+1
2010-04-19Extract verify_pack_index for reuse from verify_packShawn O. Pearce1-3/+12
2009-06-06Don't expect verify_pack() callers to set pack_sizeMike Hommey1-3/+5
2008-10-02fix openssl headers conflicting with custom SHA1 implementationsNicolas Pitre1-8/+8
2008-06-24verify-pack: check packed object CRC when using index version 2Nicolas Pitre1-2/+37
2008-06-24move show_pack_info() where it belongsNicolas Pitre1-65/+1
2008-06-24optimize verify-pack a bitNicolas Pitre1-3/+1
2008-06-23call init_pack_revindex() lazilyNicolas Pitre1-1/+0
2008-06-01make verify-pack a bit more useful with bad packsNicolas Pitre1-28/+27
2008-03-01add storage size output to 'git verify-pack -v'Nicolas Pitre1-4/+4
2008-03-01fix unimplemented packed_object_info_detail() featuresNicolas Pitre1-0/+3
2007-06-06pack-check: Sort entries by pack offset before unpacking them.Alexandre Julliard1-12/+35
2007-05-26Lazily open pack index files on demandShawn O. Pearce1-2/+7
2007-05-25fixes to output of git-verify-pack -vNicolas Pitre1-10/+9
2007-04-10get rid of num_packed_objects()Nicolas Pitre1-2/+2
2007-04-05clean up and optimize nth_packed_object_sha1() usageNicolas Pitre1-4/+7
2007-03-16[PATCH] clean up pack index handling a bitNicolas Pitre1-4/+4
2007-03-07Use off_t when we really mean a file offset.Shawn O. Pearce1-9/+12
2007-03-07Use uint32_t for all packed object counts.Shawn O. Pearce1-4/+4
2007-02-27convert object type handling from a string to a numberNicolas Pitre1-7/+7
2006-12-29Loop over pack_windows when inflating/accessing data.Shawn O. Pearce1-26/+20
2006-12-29Replace use_packed_git with window cursors.Shawn O. Pearce1-10/+12
2006-12-29Refactor packed_git to prepare for sliding mmap windows.Shawn O. Pearce1-3/+3
2006-12-29Replace unpack_entry_gently with unpack_entry.Shawn O. Pearce1-1/+1
2006-09-23many cleanups to sha1_file.cNicolas Pitre1-9/+10
2006-08-17Do not use memcmp(sha1_1, sha1_2, 20) with hardcoded length.David Rientjes1-3/+3
2006-06-20Remove all void-pointer arithmetic.Florian Forster1-3/+3
2006-04-27verify-pack: check integrity in a saner order.Junio C Hamano1-3/+3
2006-03-05verify-pack -v: show delta-chain histogram.Junio C Hamano1-1/+19
2006-02-15packed objects: minor cleanupJunio C Hamano1-2/+2
2006-02-09remove delta-against-self bitNicolas Pitre1-3/+3
2005-08-09[PATCH] -Werror fixesTimo Sirainen1-1/+1
2005-07-07[PATCH] Typofix an error message in pack-check.cJunio C Hamano1-1/+1
2005-06-30[PATCH] Show more details of packfile with verify-pack -v.Junio C Hamano1-1/+32
2005-06-30[PATCH] verify-pack updates.Junio C Hamano1-0/+112