Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/refs.c
AgeCommit message (Expand)Author
2013-07-01Merge branch 'mh/ref-races'Junio C Hamano
2013-06-21for_each_ref: load all loose refs before packed refsJeff King
2013-06-21get_packed_ref_cache: reload packed-refs file when it changesJeff King
2013-06-21packed_ref_cache: increment refcount when lockedMichael Haggerty
2013-06-21do_for_each_entry(): increment the packed refs cache refcountMichael Haggerty
2013-06-21refs: manage lifetime of packed refs cache via reference countingMichael Haggerty
2013-06-21refs: implement simple transactions for the packed-refs fileMichael Haggerty
2013-06-21refs: wrap the packed refs cache in a level of indirectionMichael Haggerty
2013-06-21pack_refs(): split creation of packed refs and entry writingMichael Haggerty
2013-06-21repack_without_ref(): split list curation and entry writingMichael Haggerty
2013-06-19resolve_ref_unsafe(): close race condition reading loose refsMichael Haggerty
2013-06-19resolve_ref_unsafe(): handle the case of an SHA-1 within loopMichael Haggerty
2013-06-19resolve_ref_unsafe(): extract function handle_missing_loose_ref()Michael Haggerty
2013-06-12Merge branch 'fc/at-head'Junio C Hamano
2013-05-30Merge branch 'mh/packed-refs-various'Junio C Hamano
2013-05-08Add new @ shortcut for HEADFelipe Contreras
2013-05-02refs: handle the main ref_cache speciallyMichael Haggerty
2013-05-02refs: change do_for_each_*() functions to take ref_cache argumentsMichael Haggerty
2013-05-02pack_one_ref(): do some cheap tests before a more expensive oneMichael Haggerty
2013-05-02pack_one_ref(): use write_packed_entry() to do the writingMichael Haggerty
2013-05-02pack_one_ref(): use function peel_entry()Michael Haggerty
2013-05-02refs: inline function do_not_prune()Michael Haggerty
2013-05-02pack_refs(): change to use do_for_each_entry()Michael Haggerty
2013-05-02refs: use same lock_file object for both ref-packing functionsMichael Haggerty
2013-05-02pack_one_ref(): rename "path" parameter to "refname"Michael Haggerty
2013-05-02pack-refs: merge code from pack-refs.{c,h} into refs.{c,h}Michael Haggerty
2013-05-02refs: extract a function write_packed_entry()Michael Haggerty
2013-05-02repack_without_ref(): write peeled refs in the rewritten fileMichael Haggerty
2013-05-02refs: change how packed refs are deletedMichael Haggerty
2013-05-02search_ref_dir(): return an index rather than a pointerMichael Haggerty
2013-05-02repack_without_ref(): silence errors for dangling packed refsMichael Haggerty
2013-05-02refs: change the internal reference-iteration APIMichael Haggerty
2013-05-02refs: extract a function peel_entry()Michael Haggerty
2013-05-02peel_ref(): fix return value for non-peelable, not-current referenceMichael Haggerty
2013-05-02peel_object(): give more specific information in return valueMichael Haggerty
2013-05-02refs: extract function peel_object()Michael Haggerty
2013-05-02refs: extract a function ref_resolves_to_object()Michael Haggerty
2013-05-02repack_without_ref(): use function get_packed_ref()Michael Haggerty
2013-05-02peel_ref(): use function get_packed_ref()Michael Haggerty
2013-05-02get_packed_ref(): return a ref_entryMichael Haggerty
2013-05-02do_for_each_ref_in_dirs(): remove dead codeMichael Haggerty
2013-05-02refs: define constant PEELED_LINE_LENGTHMichael Haggerty
2013-05-02refs: document how current_ref is usedMichael Haggerty
2013-05-02refs: document do_for_each_ref() and do_one_ref()Michael Haggerty
2013-05-02refs: document the fields of struct ref_valueMichael Haggerty
2013-05-02refs: document flags constants REF_*Michael Haggerty
2013-04-03Merge branch 'jk/fully-peeled-packed-ref' into maint-1.8.1Junio C Hamano
2013-03-27Merge branch 'jc/reflog-reverse-walk'Junio C Hamano
2013-03-26Merge branch 'jk/fully-peeled-packed-ref'Junio C Hamano
2013-03-24refs.c: fix fread error handlingJohn Keeping