summaryrefslogtreecommitdiff
path: root/refs.c
AgeCommit message (Expand)AuthorFilesLines
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
2012-04-10refs: store references hierarchicallyMichael Haggerty1-47/+227
2012-04-10sort_ref_dir(): simplify logicMichael Haggerty1-10/+11
2012-04-10refs.c: rename ref_array -> ref_dirMichael Haggerty1-98/+97
2012-04-10struct ref_entry: nest the value part in a unionMichael Haggerty1-13/+19
2012-04-10check_refname_component(): return 0 for zero-length componentsMichael Haggerty1-2/+2
2012-04-10free_ref_entry(): new functionMichael Haggerty1-2/+7
2012-04-10names_conflict(): simplify implementationMichael Haggerty1-24/+36
2012-04-10repack_without_ref(): reimplement using do_for_each_ref_in_array()Michael Haggerty1-33/+61
2012-04-10do_for_each_ref_in_arrays(): new functionMichael Haggerty1-29/+53
2012-04-10do_for_each_ref_in_array(): new functionMichael Haggerty1-10/+23
2012-04-10refs: manage current_ref within do_one_ref()Michael Haggerty1-6/+7
2012-04-10refs.c: reorder definitions more logicallyMichael Haggerty1-253/+256
2012-02-12refs: remove the extra_refs APIMichael Haggerty1-22/+1
2012-01-17add_packed_ref(): new function in the refs API.Michael Haggerty1-0/+6
2012-01-17ref_array: keep track of whether references are sortedMichael Haggerty1-7/+26
2011-12-20Merge branch 'mh/ref-api'Junio C Hamano1-242/+260
2011-12-13Rename resolve_ref() to resolve_ref_unsafe()Nguyễn Thái Ngọc Duy1-11/+11
2011-12-13Convert resolve_ref+xstrdup to new resolve_refdup functionNguyễn Thái Ngọc Duy1-0/+6
2011-12-12add_ref(): take a (struct ref_entry *) parameterMichael Haggerty1-9/+5
2011-12-12create_ref_entry(): extract function from add_ref()Michael Haggerty1-15/+22