summaryrefslogtreecommitdiff
path: root/builtin/pack-objects.c
Commit message (Expand)AuthorAgeFilesLines
* attr: remove an implicit dependency on the_indexNguyễn Thái Ngọc Duy2018-08-131-1/+1
* Merge branch 'sb/object-store-lookup'Junio C Hamano2018-08-021-1/+1
|\
| * tag: add repository argument to lookup_tagStefan Beller2018-06-291-1/+1
| * Merge branch 'sb/object-store-grafts' into sb/object-store-lookupJunio C Hamano2018-06-291-3/+3
| |\
* | \ Merge branch 'jt/remove-pack-bitmap-global'Junio C Hamano2018-07-181-2/+5
|\ \ \
| * | | pack-bitmap: add free functionJonathan Tan2018-06-211-0/+1
| * | | pack-bitmap: remove bitmap_git global variableJonathan Tan2018-06-211-2/+4
| |/ /
* | | Merge branch 'sb/object-store-grafts'Junio C Hamano2018-07-181-3/+3
|\ \ \ | |/ / |/| / | |/
| * shallow: add repository argument to is_repository_shallowStefan Beller2018-05-181-2/+2
| * shallow: add repository argument to register_shallowStefan Beller2018-05-181-1/+1
* | Merge branch 'nd/use-opt-int-set-f'Junio C Hamano2018-06-011-12/+12
|\ \
| * | Use OPT_SET_INT_F() for cmdline option specificationNguyễn Thái Ngọc Duy2018-05-241-12/+12
* | | Merge branch 'bc/object-id'Junio C Hamano2018-05-301-15/+17
|\ \ \
| * | | pack-objects: abstract away hash algorithmbrian m. carlson2018-05-021-14/+16
| * | | sha1-file: convert freshen functions to object_idbrian m. carlson2018-05-021-1/+1
* | | | Merge branch 'js/use-bug-macro'Junio C Hamano2018-05-301-2/+2
|\ \ \ \ | |_|/ / |/| | |
| * | | Replace all die("BUG: ...") calls by BUG() onesJohannes Schindelin2018-05-061-2/+2
| |/ /
* | | Merge branch 'nd/pack-unreachable-objects-doc'Junio C Hamano2018-05-231-0/+2
|\ \ \
| * | | pack-objects: validation and documentation about unreachable optionsNguyễn Thái Ngọc Duy2018-05-061-0/+2
* | | | Merge branch 'nd/pack-objects-pack-struct'Junio C Hamano2018-05-231-128/+241
|\ \ \ \
| * | | | pack-objects: shrink delta_size field in struct object_entryNguyễn Thái Ngọc Duy2018-04-161-10/+16
| * | | | pack-objects: shrink size field in struct object_entryNguyễn Thái Ngọc Duy2018-04-161-25/+80
| * | | | pack-objects: clarify the use of object_entry::sizeNguyễn Thái Ngọc Duy2018-04-161-3/+8
| * | | | pack-objects: don't check size when the object is badNguyễn Thái Ngọc Duy2018-04-161-2/+2
| * | | | pack-objects: shrink z_delta_size field in struct object_entryNguyễn Thái Ngọc Duy2018-04-161-6/+18
| * | | | pack-objects: refer to delta objects by index instead of pointerNguyễn Thái Ngọc Duy2018-04-161-54/+63
| * | | | pack-objects: move in_pack out of struct object_entryNguyễn Thái Ngọc Duy2018-04-161-11/+17
| * | | | pack-objects: move in_pack_pos out of struct object_entryNguyễn Thái Ngọc Duy2018-04-161-1/+2
| * | | | pack-objects: use bitfield for object_entry::depthNguyễn Thái Ngọc Duy2018-04-161-0/+6
| * | | | pack-objects: use bitfield for object_entry::dfs_stateNguyễn Thái Ngọc Duy2018-04-161-0/+3
| * | | | pack-objects: turn type and in_pack_type to bitfieldsNguyễn Thái Ngọc Duy2018-04-161-24/+35
| | |/ / | |/| |
* | | | Merge branch 'sb/oid-object-info'Junio C Hamano2018-05-231-4/+7
|\ \ \ \ | | |_|/ | |/| |
| * | | packfile: add repository argument to packed_object_infoJonathan Nieder2018-04-261-1/+2
| * | | cache.h: add repository argument to oid_object_infoStefan Beller2018-04-261-3/+5
| |/ /
* | | Merge branch 'nd/repack-keep-pack'Junio C Hamano2018-05-231-20/+63
|\ \ \
| * | | pack-objects: show some progress when counting kept objectsNguyễn Thái Ngọc Duy2018-04-161-6/+12
| * | | gc --auto: exclude base pack if not enough mem to "repack -ad"Nguyễn Thái Ngọc Duy2018-04-161-1/+1
| * | | repack: add --keep-pack optionNguyễn Thái Ngọc Duy2018-04-161-13/+50
| |/ /
* | | Merge branch 'ds/commit-graph'Junio C Hamano2018-05-081-3/+3
|\ \ \ | |/ / |/| |
| * | csum-file: refactor finalize_hashfile() methodDerrick Stolee2018-04-021-2/+2
| * | csum-file: rename hashclose() to finalize_hashfile()Derrick Stolee2018-04-021-3/+3
* | | Merge branch 'sb/packfiles-in-repository'Junio C Hamano2018-04-111-1/+0
|\ \ \
| * | | packfile: keep prepare_packed_git() privatesb/packfiles-in-repositoryNguyễn Thái Ngọc Duy2018-03-261-1/+0
| * | | packfile: add repository argument to prepare_packed_gitStefan Beller2018-03-261-1/+1
* | | | Merge branch 'sb/object-store'Junio C Hamano2018-04-111-9/+12
|\ \ \ \ | |/ / /
| * | | object-store: move packed_git and packed_git_mru to object storeStefan Beller2018-03-261-9/+12
* | | | Merge branch 'bc/object-id'Junio C Hamano2018-04-101-16/+11
|\ \ \ \ | |_|_|/ |/| | |
| * | | sha1_file: convert read_sha1_file to struct object_idbrian m. carlson2018-03-141-10/+6
| * | | sha1_file: convert read_object_with_reference to object_idbrian m. carlson2018-03-141-1/+1
| * | | sha1_file: convert sha1_object_info* to object_idbrian m. carlson2018-03-141-4/+3