index
:
pub/scm/git/git.git
jch
main
maint
master
next
seen
todo
Git source code mirror
Junio C Hamano
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
midx.c
Age
Commit message (
Expand
)
Author
Files
Lines
2025-09-24
packfile: move `get_multi_pack_index()` into "midx.c"
Patrick Steinhardt
1
-0
/
+6
2025-09-24
packfile: introduce function to load and add packfiles
Patrick Steinhardt
1
-19
/
+4
2025-09-24
packfile: refactor `install_packed_git()` to work on packfile store
Patrick Steinhardt
1
-1
/
+1
2025-09-24
odb: move MRU list of packfiles into `struct packfile_store`
Patrick Steinhardt
1
-1
/
+1
2025-09-24
odb: move packfile map into `struct packfile_store`
Patrick Steinhardt
1
-1
/
+1
2025-08-11
midx: compute paths via their source
Patrick Steinhardt
1
-29
/
+25
2025-08-11
midx: stop duplicating info redundant with its owning source
Patrick Steinhardt
1
-10
/
+11
2025-08-11
midx: load multi-pack indices via their source
Patrick Steinhardt
1
-32
/
+25
2025-08-11
midx: drop redundant `struct repository` parameter
Patrick Steinhardt
1
-9
/
+9
2025-08-11
odb: store locality in object database sources
Patrick Steinhardt
1
-2
/
+3
2025-07-15
midx: remove now-unused linked list of multi-pack indices
Patrick Steinhardt
1
-16
/
+2
2025-07-15
midx: stop using linked list when closing MIDX
Patrick Steinhardt
1
-5
/
+8
2025-07-15
midx: start tracking per object database source
Patrick Steinhardt
1
-8
/
+11
2025-07-01
object-store: rename `object_directory` to `odb_source`
Patrick Steinhardt
1
-3
/
+3
2025-05-28
midx: stop repeatedly looking up nonexistent packfiles
Patrick Steinhardt
1
-2
/
+10
2025-04-15
object-file: move `git_open_cloexec()` to "compat/open.c"
Patrick Steinhardt
1
-1
/
+0
2025-03-10
csum-file: stop depending on `the_repository`
Patrick Steinhardt
1
-1
/
+2
2024-12-18
progress: stop using `the_repository`
Patrick Steinhardt
1
-4
/
+9
2024-12-18
Merge branch 'ps/build-sign-compare' into ps/the-repository
Junio C Hamano
1
-0
/
+2
2024-12-06
global: mark code units that generate warnings with `-Wsign-compare`
Patrick Steinhardt
1
-0
/
+1
2024-12-04
midx: inline the `MIDX_MIN_SIZE` definition
Karthik Nayak
1
-5
/
+1
2024-12-04
midx: pass down `hash_algo` to functions using global variables
Karthik Nayak
1
-11
/
+15
2024-12-04
midx: pass `repository` to `load_multi_pack_index`
Karthik Nayak
1
-5
/
+6
2024-12-04
midx: cleanup internal usage of `the_repository` and `the_hash_algo`
Karthik Nayak
1
-22
/
+27
2024-12-04
midx: add repository to `multi_pack_index` struct
Karthik Nayak
1
-0
/
+1
2024-12-04
packfile: add repository to struct `packed_git`
Karthik Nayak
1
-1
/
+1
2024-10-25
packfile: use object_id in find_pack_entry_one()
Jeff King
1
-1
/
+1
2024-10-25
midx: avoid duplicate packed_git entries
Jeff King
1
-3
/
+17
2024-08-27
pack-bitmap: tag bitmapped packs with their corresponding MIDX
Taylor Blau
1
-0
/
+1
2024-08-13
midx: drop unused parameters from add_midx_to_chain()
Jeff King
1
-9
/
+5
2024-08-06
midx: implement support for writing incremental MIDX chains
Taylor Blau
1
-11
/
+51
2024-08-06
midx: implement verification support for incremental MIDXs
Taylor Blau
1
-17
/
+30
2024-08-06
midx: support reading incremental MIDX chains
Taylor Blau
1
-10
/
+174
2024-08-06
midx: teach `midx_preferred_pack()` about incremental MIDXs
Taylor Blau
1
-2
/
+5
2024-08-06
midx: teach `midx_contains_pack()` about incremental MIDXs
Taylor Blau
1
-1
/
+10
2024-08-06
midx: remove unused `midx_locate_pack()`
Taylor Blau
1
-11
/
+2
2024-08-06
midx: teach `fill_midx_entry()` about incremental MIDXs
Taylor Blau
1
-4
/
+2
2024-08-06
midx: teach `nth_midxed_offset()` about incremental MIDXs
Taylor Blau
1
-0
/
+2
2024-08-06
midx: teach `bsearch_midx()` about incremental MIDXs
Taylor Blau
1
-1
/
+4
2024-08-06
midx: introduce `bsearch_one_midx()`
Taylor Blau
1
-3
/
+14
2024-08-06
midx: teach `nth_bitmapped_pack()` about incremental MIDXs
Taylor Blau
1
-3
/
+5
2024-08-06
midx: teach `nth_midxed_object_oid()` about incremental MIDXs
Taylor Blau
1
-1
/
+3
2024-08-06
midx: teach `prepare_midx_pack()` about incremental MIDXs
Taylor Blau
1
-4
/
+22
2024-08-06
midx: teach `nth_midxed_pack_int_id()` about incremental MIDXs
Taylor Blau
1
-2
/
+21
2024-06-14
global: introduce `USE_THE_REPOSITORY_VARIABLE` macro
Patrick Steinhardt
1
-0
/
+2
2024-06-14
hash: require hash algorithm in `oidread()` and `oidclr()`
Patrick Steinhardt
1
-1
/
+2
2024-05-30
midx: replace `get_midx_rev_filename()` with a generic helper
Taylor Blau
1
-4
/
+6
2024-04-23
Merge branch 'ps/missing-btmp-fix'
Junio C Hamano
1
-3
/
+4
2024-04-15
pack-bitmap: gracefully handle missing BTMP chunks
Patrick Steinhardt
1
-3
/
+4
2024-04-01
midx-write: move writing-related functions from midx.c
Taylor Blau
1
-1539
/
+14
[next]