aboutsummaryrefslogtreecommitdiffstats
path: root/builtin/unpack-objects.c
AgeCommit message (Expand)AuthorFilesLines
2022-02-25object-file API: have write_object_file() take "enum object_type"Ævar Arnfjörð Bjarmason1-3/+3
2021-04-27hash: provide per-algorithm null OIDsbrian m. carlson1-1/+2
2021-04-27Use the final_oid_fn to finalize hashing of object IDsbrian m. carlson1-1/+1
2021-04-27Always use oidread to read into struct object_idbrian m. carlson1-1/+1
2021-04-07Merge branch 'ab/fsck-api-cleanup'Junio C Hamano1-1/+2
2021-03-28fsck.h: use "enum object_type" instead of "int"Ævar Arnfjörð Bjarmason1-1/+2
2021-03-13use CALLOC_ARRAYRené Scharfe1-2/+2
2020-01-31sha1-file: pass git_hash_algo to hash_object_file()Matheus Tavares1-1/+2
2019-11-20builtin/unpack-objects.c: show throughput progressSZEDER Gábor1-1/+2
2019-06-20object: convert lookup_object() to use object_idJeff King1-1/+1
2018-08-29convert "hashcmp() != 0" to "!hasheq()"Jeff King1-1/+1
2018-08-29convert "oidcmp() == 0" to oideq()Jeff King1-1/+1
2018-08-15Merge branch 'jk/core-use-replace-refs'Junio C Hamano1-1/+1
2018-07-18check_replace_refs: rename to read_replace_refsJeff King1-1/+1
2018-07-18Merge branch 'sb/object-store-grafts'Junio C Hamano1-0/+1
2018-06-29blob: add repository argument to lookup_blobStefan Beller1-1/+1
2018-06-29object: add repository argument to parse_object_bufferStefan Beller1-1/+2
2018-06-29object: add repository argument to lookup_objectStefan Beller1-1/+1
2018-06-29Merge branch 'sb/object-store-grafts' into sb/object-store-lookupJunio C Hamano1-0/+1
2018-05-29Sync with Git 2.17.1Junio C Hamano1-2/+5
2018-05-21unpack-objects: call fsck_finish() after fscking objectsJeff King1-1/+4
2018-05-21index-pack: make fsck error message more specificJeff King1-1/+1
2018-05-16object-store: move object access functions to object-store.hStefan Beller1-0/+1
2018-04-26cache.h: add repository argument to oid_object_infoStefan Beller1-1/+1
2018-04-10Merge branch 'bc/object-id'Junio C Hamano1-2/+2
2018-03-14Merge branch 'nd/object-allocation-comments'Junio C Hamano1-0/+1
2018-03-14sha1_file: convert read_sha1_file to struct object_idbrian m. carlson1-1/+1
2018-03-14sha1_file: convert sha1_object_info* to object_idbrian m. carlson1-1/+1
2018-03-06Merge branch 'bw/c-plus-plus'Junio C Hamano1-5/+5
2018-03-06object.h: update flag allocation commentNguyễn Thái Ngọc Duy1-0/+1
2018-02-15Merge branch 'bc/hash-algo'Junio C Hamano1-9/+9
2018-02-14object: rename function 'typename' to 'type_name'Brandon Williams1-5/+5
2018-02-02builtin/unpack-objects: switch uses of SHA-1 to the_hash_algobrian m. carlson1-9/+9
2018-01-30sha1_file: convert write_sha1_file to object_idPatryk Obara1-3/+6
2018-01-30sha1_file: convert hash_sha1_file to object_idPatryk Obara1-1/+1
2017-10-10cleanup: fix possible overflow errors in binary searchDerrick Stolee1-1/+1
2017-06-24Merge branch 'ab/free-and-null'Junio C Hamano1-2/+1
2017-06-24Merge branch 'bw/config-h'Junio C Hamano1-0/+1
2017-06-16coccinelle: make use of the "type" FREE_AND_NULL() ruleÆvar Arnfjörð Bjarmason1-2/+1
2017-06-15config: don't include config.h by defaultBrandon Williams1-0/+1
2017-05-08object: convert parse_object* to take struct object_idbrian m. carlson1-1/+2
2017-05-08Convert lookup_blob to struct object_idbrian m. carlson1-1/+1
2017-05-08builtin/unpack-objects: convert to struct object_idbrian m. carlson1-32/+32
2016-08-24unpack-objects: add --max-input-size=<size> optionChristian Couder1-0/+7
2016-06-28coccinelle: convert hashcpy() with null_sha1 to hashclr()brian m. carlson1-2/+2
2015-11-20Remove get_object_hash.brian m. carlson1-1/+1
2015-11-20Convert struct object to object_idbrian m. carlson1-4/+4
2015-11-20Add several uses of get_object_hash.brian m. carlson1-1/+1
2015-10-16usage: do not insist that standard input must come from a fileJunio C Hamano1-1/+1
2015-06-23fsck (receive-pack): allow demoting errors to warningsJohannes Schindelin1-0/+5
2015-06-22fsck: introduce fsck optionsJohannes Schindelin1-5/+6
2014-12-09index-pack: terminate object buffers with NULDuy Nguyen1-1/+1
2014-09-10fsck_object(): allow passing object data separately from the object itselfJohannes Schindelin1-4/+10
2014-03-14Merge branch 'mh/replace-refs-variable-rename'Junio C Hamano1-1/+1
2014-02-24i18n: mark all progress lines for translationNguyễn Thái Ngọc Duy1-1/+1
2014-02-20rename read_replace_refs to check_replace_refsMichael Haggerty1-1/+1
2013-12-05replace {pre,suf}fixcmp() with {starts,ends}_with()Christian Couder1-1/+1
2012-04-30remove superfluous newlines in error messagesPete Wyckoff1-1/+1
2011-06-10zlib: zlib can only process 4GB at a timeJunio C Hamano1-1/+1
2010-10-06do not depend on signed integer overflowErik Faye-Lund1-1/+1
2010-02-22Move 'builtin-*' into a 'builtin/' subdirectoryLinus Torvalds1-0/+568