| Age | Commit message (Expand) | Author | Files | Lines |
| 2021-08-25 | refs: make errno output explicit for read_raw_ref_fn | Han-Wen Nienhuys | 1 | -4/+4 |
| 2021-08-25 | refs API: remove OID argument to reflog_expire() | Ævar Arnfjörð Bjarmason | 1 | -1/+1 |
| 2021-08-19 | refs/packet: add missing BUG() invocations to reflog callbacks | Ævar Arnfjörð Bjarmason | 1 | -0/+5 |
| 2021-07-16 | Merge branch 'ab/struct-init' | Junio C Hamano | 1 | -1/+1 |
| 2021-07-01 | string-list.h users: change to use *_{nodup,dup}() | Ævar Arnfjörð Bjarmason | 1 | -1/+1 |
| 2021-05-20 | refs: make explicit that ref_iterator_peel returns boolean | Han-Wen Nienhuys | 1 | -1/+1 |
| 2021-03-13 | use CALLOC_ARRAY | René Scharfe | 1 | -2/+2 |
| 2020-08-19 | refs: move gitdir into base ref_store | Han-Wen Nienhuys | 1 | -0/+1 |
| 2019-08-02 | pack-refs: always refresh after taking the lock file | Sun Chao | 1 | -7/+16 |
| 2018-10-15 | refs/packed-backend: express constants using the_hash_algo | brian m. carlson | 1 | -7/+7 |
| 2018-08-29 | convert "oidcmp() != 0" to "!oideq()" | Jeff King | 1 | -1/+1 |
| 2018-06-01 | refs/packed-backend.c: close fd of empty file | Stefan Beller | 1 | -0/+1 |
| 2018-05-06 | Replace all die("BUG: ...") calls by BUG() ones | Johannes Schindelin | 1 | -8/+8 |
| 2018-03-30 | refs: use chdir_notify to update cached relative paths | Jeff King | 1 | -0/+3 |
| 2018-02-15 | Merge branch 'kg/packed-ref-cache-fix' | Junio C Hamano | 1 | -51/+55 |
| 2018-01-24 | packed_ref_cache: don't use mmap() for small files | Kim Gybels | 1 | -1/+3 |
| 2018-01-24 | load_contents(): don't try to mmap an empty file | Michael Haggerty | 1 | -7/+6 |
| 2018-01-24 | packed_ref_iterator_begin(): make optimization more general | Michael Haggerty | 1 | -6/+6 |
| 2018-01-24 | find_reference_location(): make function safe for empty snapshots | Michael Haggerty | 1 | -4/+6 |
| 2018-01-24 | create_snapshot(): use `xmemdupz()` rather than a strbuf | Michael Haggerty | 1 | -5/+4 |
| 2018-01-24 | struct snapshot: store `start` rather than `header_len` | Michael Haggerty | 1 | -31/+33 |
| 2017-12-06 | Merge branch 'mh/avoid-rewriting-packed-refs' into maint | Junio C Hamano | 1 | -0/+94 |
| 2017-11-15 | Merge branch 'mh/tidy-ref-update-flags' | Junio C Hamano | 1 | -9/+9 |
| 2017-11-15 | Merge branch 'mh/avoid-rewriting-packed-refs' | Junio C Hamano | 1 | -0/+94 |
| 2017-11-06 | refs: update some more docs to use "oid" rather than "sha1" | Michael Haggerty | 1 | -1/+1 |
| 2017-11-06 | write_packed_entry(): take `object_id` arguments | Michael Haggerty | 1 | -8/+8 |
| 2017-10-30 | files-backend: don't rewrite the `packed-refs` file unnecessarily | Michael Haggerty | 1 | -0/+94 |
| 2017-10-16 | refs: convert read_raw_ref backends to struct object_id | brian m. carlson | 1 | -2/+2 |
| 2017-10-16 | refs: convert peel_object to struct object_id | brian m. carlson | 1 | -3/+3 |
| 2017-10-16 | refs: convert reflog_expire parameter to struct object_id | brian m. carlson | 1 | -1/+1 |
| 2017-10-05 | Merge branch 'rs/cleanup-strbuf-users' | Junio C Hamano | 1 | -2/+2 |
| 2017-10-03 | Merge branch 'mh/mmap-packed-refs' | Junio C Hamano | 1 | -237/+742 |
| 2017-10-03 | Merge branch 'sd/branch-copy' | Junio C Hamano | 1 | -0/+8 |
| 2017-10-02 | use strbuf_addstr() for adding strings to strbufs | René Scharfe | 1 | -2/+2 |
| 2017-09-25 | packed-backend.c: rename a bunch of things and update comments | Michael Haggerty | 1 | -190/+232 |
| 2017-09-25 | mmapped_ref_iterator: inline into `packed_ref_iterator` | Michael Haggerty | 1 | -170/+114 |
| 2017-09-25 | ref_cache: remove support for storing peeled values | Michael Haggerty | 1 | -1/+8 |
| 2017-09-25 | packed_ref_store: get rid of the `ref_cache` entirely | Michael Haggerty | 1 | -27/+2 |
| 2017-09-25 | ref_store: implement `refs_peel_ref()` generically | Michael Haggerty | 1 | -36/+0 |
| 2017-09-25 | packed_read_raw_ref(): read the reference from the mmapped buffer | Michael Haggerty | 1 | -5/+9 |
| 2017-09-25 | packed_ref_iterator_begin(): iterate using `mmapped_ref_iterator` | Michael Haggerty | 1 | -3/+106 |
| 2017-09-25 | read_packed_refs(): ensure that references are ordered when read | Michael Haggerty | 1 | -11/+212 |
| 2017-09-25 | packed_ref_cache: keep the `packed-refs` file mmapped if possible | Michael Haggerty | 1 | -42/+143 |
| 2017-09-25 | packed-backend.c: reorder some definitions | Michael Haggerty | 1 | -24/+24 |
| 2017-09-25 | mmapped_ref_iterator_advance(): no peeled value for broken refs | Michael Haggerty | 1 | -2/+8 |
| 2017-09-25 | mmapped_ref_iterator: add iterator over a packed-refs file | Michael Haggerty | 1 | -55/+152 |
| 2017-09-25 | packed_ref_cache: remember the file-wide peeling state | Michael Haggerty | 1 | -5/+12 |
| 2017-09-25 | read_packed_refs(): read references with minimal copying | Michael Haggerty | 1 | -61/+40 |
| 2017-09-19 | Merge branch 'mh/packed-ref-transactions' | Junio C Hamano | 1 | -152/+310 |
| 2017-09-14 | read_packed_refs(): make parsing of the header line more robust | Michael Haggerty | 1 | -6/+15 |
| 2017-09-14 | read_packed_refs(): only check for a header at the top of the file | Michael Haggerty | 1 | -11/+24 |
| 2017-09-14 | read_packed_refs(): use mmap to read the `packed-refs` file | Michael Haggerty | 1 | -10/+32 |
| 2017-09-14 | die_unterminated_line(), die_invalid_line(): new functions | Michael Haggerty | 1 | -3/+25 |
| 2017-09-14 | packed_ref_cache: add a backlink to the associated `packed_ref_store` | Michael Haggerty | 1 | -7/+16 |
| 2017-09-14 | ref_iterator: keep track of whether the iterator output is ordered | Michael Haggerty | 1 | -1/+1 |
| 2017-09-09 | packed-backend: rip out some now-unused code | Michael Haggerty | 1 | -193/+0 |
| 2017-09-09 | packed_delete_refs(): implement method | Michael Haggerty | 1 | -1/+44 |
| 2017-09-09 | packed_ref_store: implement reference transactions | Michael Haggerty | 1 | -3/+310 |
| 2017-09-09 | packed-backend: don't adjust the reference count on lock/unlock | Michael Haggerty | 1 | -5/+5 |
| 2017-09-06 | tempfile: auto-allocate tempfiles on heap | Jeff King | 1 | -5/+6 |
| 2017-09-06 | lockfile: do not rollback lock on failed close | Jeff King | 1 | -1/+2 |
| 2017-08-22 | Merge branch 'mh/packed-ref-store' | Junio C Hamano | 1 | -0/+885 |
| 2017-07-27 | packed_ref_store: handle a packed-refs file that is a symlink | Michael Haggerty | 1 | -6/+18 |
| 2017-07-03 | read_packed_refs(): die if `packed-refs` contains bogus data | Michael Haggerty | 1 | -3/+7 |
| 2017-07-03 | repack_without_refs(): don't lock or unlock the packed refs | Michael Haggerty | 1 | -24/+8 |
| 2017-06-23 | commit_packed_refs(): remove call to `packed_refs_unlock()` | Michael Haggerty | 1 | -10/+8 |
| 2017-06-23 | clear_packed_ref_cache(): don't protest if the lock is held | Michael Haggerty | 1 | -2/+0 |
| 2017-06-23 | packed_refs_unlock(), packed_refs_is_locked(): new functions | Michael Haggerty | 1 | -6/+25 |
| 2017-06-23 | packed_refs_lock(): report errors via a `struct strbuf *err` | Michael Haggerty | 1 | -6/+11 |
| 2017-06-23 | packed_refs_lock(): function renamed from lock_packed_refs() | Michael Haggerty | 1 | -5/+5 |
| 2017-06-23 | commit_packed_refs(): use a staging file separate from the lockfile | Michael Haggerty | 1 | -8/+32 |
| 2017-06-23 | commit_packed_refs(): report errors rather than dying | Michael Haggerty | 1 | -30/+55 |
| 2017-06-23 | packed_ref_store: make class into a subclass of `ref_store` | Michael Haggerty | 1 | -20/+212 |
| 2017-06-23 | packed-backend: new module for handling packed references | Michael Haggerty | 1 | -0/+623 |