Age | Commit message (Expand) | Author | Files | Lines |
2017-11-15 | Merge branch 'mh/tidy-ref-update-flags' | Junio C Hamano | 4 | -108/+127 |
2017-11-15 | Merge branch 'mh/avoid-rewriting-packed-refs' | Junio C Hamano | 3 | -1/+120 |
2017-11-06 | Merge branch 'bc/object-id' | Junio C Hamano | 4 | -74/+72 |
2017-11-06 | refs: update some more docs to use "oid" rather than "sha1" | Michael Haggerty | 4 | -22/+21 |
2017-11-06 | write_packed_entry(): take `object_id` arguments | Michael Haggerty | 1 | -8/+8 |
2017-11-06 | refs: rename constant `REF_ISPRUNING` to `REF_IS_PRUNING` | Michael Haggerty | 1 | -9/+9 |
2017-11-06 | refs: rename constant `REF_NODEREF` to `REF_NO_DEREF` | Michael Haggerty | 2 | -22/+22 |
2017-11-06 | refs: tidy up and adjust visibility of the `ref_update` flags | Michael Haggerty | 2 | -52/+60 |
2017-11-06 | ref_transaction_add_update(): remove a check | Michael Haggerty | 1 | -1/+6 |
2017-11-06 | prune_ref(): call `ref_transaction_add_update()` directly | Michael Haggerty | 1 | -9/+16 |
2017-11-06 | files_transaction_prepare(): don't leak flags to packed transaction | Michael Haggerty | 1 | -2/+2 |
2017-10-30 | files-backend: don't rewrite the `packed-refs` file unnecessarily | Michael Haggerty | 3 | -1/+120 |
2017-10-28 | Merge branch 'bc/object-id' into base | Michael Haggerty | 4 | -74/+72 |
2017-10-26 | Merge branch 'mh/ref-locking-fix' | Junio C Hamano | 1 | -1/+1 |
2017-10-25 | files_transaction_prepare(): fix handling of ref lock failure | Michael Haggerty | 1 | -1/+1 |
2017-10-16 | refs/files-backend: convert static functions to object_id | brian m. carlson | 1 | -28/+28 |
2017-10-16 | refs: convert read_raw_ref backends to struct object_id | brian m. carlson | 3 | -13/+14 |
2017-10-16 | refs: convert peel_object to struct object_id | brian m. carlson | 3 | -6/+6 |
2017-10-16 | refs: convert resolve_ref_unsafe to struct object_id | brian m. carlson | 1 | -4/+4 |
2017-10-16 | refs: convert reflog_expire parameter to struct object_id | brian m. carlson | 3 | -8/+5 |
2017-10-16 | refs: convert read_ref and read_ref_full to object_id | brian m. carlson | 1 | -5/+5 |
2017-10-16 | refs: update ref transactions to use struct object_id | brian m. carlson | 2 | -8/+8 |
2017-10-16 | refs: convert delete_ref and refs_delete_ref to struct object_id | brian m. carlson | 1 | -1/+1 |
2017-10-16 | refs/files-backend: convert struct ref_to_prune to object_id | brian m. carlson | 1 | -3/+3 |
2017-10-05 | Merge branch 'rs/cleanup-strbuf-users' | Junio C Hamano | 1 | -2/+2 |
2017-10-05 | Merge branch 'rs/resolve-ref-optional-result' | Junio C Hamano | 1 | -2/+1 |
2017-10-03 | Merge branch 'mh/mmap-packed-refs' | Junio C Hamano | 6 | -368/+818 |
2017-10-03 | Merge branch 'jk/read-in-full' | Junio C Hamano | 1 | -1/+1 |
2017-10-03 | Merge branch 'sd/branch-copy' | Junio C Hamano | 3 | -8/+50 |
2017-10-02 | use strbuf_addstr() for adding strings to strbufs | René Scharfe | 1 | -2/+2 |
2017-10-01 | refs: pass NULL to refs_resolve_refdup() if hash is not needed | René Scharfe | 1 | -2/+1 |
2017-09-28 | Merge branch 'rs/resolve-ref-optional-result' | Junio C Hamano | 1 | -2/+1 |
2017-09-26 | files-backend: prefer "0" for write_in_full() error check | Jeff King | 1 | -1/+1 |
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 | 3 | -72/+11 |
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 | 3 | -77/+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-25 | Merge branch 'jk/write-in-full-fix' | Junio C Hamano | 1 | -5/+5 |
2017-09-24 | refs: pass NULL to refs_resolve_ref_unsafe() if hash is not needed | René Scharfe | 1 | -2/+1 |
2017-09-19 | Merge branch 'mh/packed-ref-transactions' | Junio C Hamano | 4 | -216/+478 |