summaryrefslogtreecommitdiff
path: root/refs.c
AgeCommit message (Expand)AuthorFilesLines
2013-03-26Merge branch 'jc/reflog-reverse-walk'Junio C Hamano1-46/+115
2013-03-25Merge branch 'jk/fully-peeled-packed-ref'Junio C Hamano1-5/+44
2013-03-23refs.c: fix fread error handlingJohn Keeping1-1/+1
2013-03-18pack-refs: add fully-peeled traitMichael Haggerty1-5/+44
2013-03-08reflog: add for_each_reflog_ent_reverse() APIJunio C Hamano1-16/+86
2013-03-08for_each_recent_reflog_ent(): simplify opening of a reflog fileJunio C Hamano1-3/+1
2013-03-08for_each_reflog_ent(): extract a helper to process a single entryJunio C Hamano1-29/+30
2013-02-17Merge branch 'jc/hidden-refs'Junio C Hamano1-0/+44
2013-02-07upload/receive-pack: allow hiding ref hierarchiesJunio C Hamano1-0/+44
2013-01-23Merge branch 'rs/clarify-entry-cmp-sslice'Junio C Hamano1-6/+4
2013-01-16refs: use strncmp() instead of strlen() and memcmp()René Scharfe1-6/+4
2013-01-02Merge branch 'jk/repack-ref-racefix'Junio C Hamano1-1/+4
2012-12-21refs: do not use cached refs in repack_without_refJeff King1-1/+4
2012-11-25Merge branch 'jh/update-ref-d-through-symref'Junio C Hamano1-1/+1
2012-11-09Merge branch 'rs/lock-correct-ref-during-delete'Jeff King1-13/+5
2012-10-21Fix failure to delete a packed ref through a symrefJohan Herland1-1/+1
2012-10-16refs: lock symref that is to be deleted, not its targetRené Scharfe1-13/+5
2012-10-04peel_ref: check object type before loadingJeff King1-2/+9
2012-10-04peel_ref: do not return a null sha1Jeff King1-0/+2
2012-10-04peel_ref: use faster deref_tag_noverifyJeff King1-1/+1
2012-05-29Merge branch 'rs/refs-string-slice'Junio C Hamano1-29/+41
2012-05-29Merge branch 'mh/ref-api-lazy-loose'Junio C Hamano1-2/+7
2012-05-25Merge branch 'mh/ref-api'Junio C Hamano1-0/+6
2012-05-24Avoid sorting if references are added to ref_cache in orderMichael Haggerty1-0/+6
2012-05-22refs: do not create ref_entry when searchingJunio C Hamano1-9/+23
2012-05-22refs: use strings directly in find_containing_dir()René Scharfe1-9/+4
2012-05-22refs: convert parameter of create_dir_entry() to length-limited stringRené Scharfe1-8/+10
2012-05-22refs: convert parameter of search_ref_dir() to length-limited stringRené Scharfe1-6/+7
2012-05-20free_ref_entry(): do not trigger reading of loose refsMichael Haggerty1-2/+7
2012-05-10Merge branch 'mh/ref-api-lazy-loose'Junio C Hamano1-131/+239
2012-05-04refs: fix find_containing_dir() regressionJunio C Hamano1-1/+3
2012-05-03refs: read loose references lazilyMichael Haggerty1-29/+96
2012-05-03read_loose_refs(): eliminate ref_cache argumentMichael Haggerty1-4/+4
2012-05-03struct ref_dir: store a reference to the enclosing ref_cacheMichael Haggerty1-4/+11
2012-05-03search_for_subdir(): return (ref_dir *) instead of (ref_entry *)Michael Haggerty1-11/+10
2012-05-03get_ref_dir(): add function for getting a ref_dir from a ref_entryMichael Haggerty1-15/+25
2012-05-03read_loose_refs(): rename function from get_ref_dir()Michael Haggerty1-7/+7
2012-05-03refs: wrap top-level ref_dirs in ref_entriesMichael Haggerty1-18/+19
2012-05-03find_containing_dir(): use strbuf in implementation of this functionMichael Haggerty1-9/+10
2012-05-03do_for_each_reflog(): use a strbuf to hold logfile nameMichael Haggerty1-29/+31
2012-05-03do_for_each_reflog(): return early on errorMichael Haggerty1-35/+35
2012-05-03get_ref_dir(): take the containing directory as argumentMichael Haggerty1-4/+8
2012-05-03refs.c: extract function search_for_subdir()Michael Haggerty1-10/+24
2012-05-03get_ref_dir(): require that the dirname argument ends in '/'Michael Haggerty1-7/+7
2012-05-03get_ref_dir(): rename "base" parameter to "dirname"Michael Haggerty1-10/+10
2012-05-03get_ref_dir(): use a strbuf to hold refnameMichael Haggerty1-28/+26
2012-05-02Merge branch 'nd/i18n'Junio C Hamano1-0/+1
2012-04-25get_ref_dir(): return early if directory cannot be readMichael Haggerty1-41/+44
2012-04-24i18n: make warn_dangling_symref() automatically append \nNguyễn Thái Ngọc Duy1-0/+1
2012-04-10do_for_each_ref(): only iterate over the subtree that was requestedMichael Haggerty1-7/+28