summaryrefslogtreecommitdiff
path: root/refs/files-backend.c
diff options
context:
space:
mode:
authorMichael Haggerty <mhagger@alum.mit.edu>2017-04-16 08:41:35 +0200
committerJunio C Hamano <gitster@pobox.com>2017-04-16 21:32:46 -0700
commite3bf2989cad99b67fceeb55ff7b822b5a7e1aff2 (patch)
tree806870c7c35277af44f4e4279bd986ce64b732da /refs/files-backend.c
parentdf30875987329bb46e54ec7be0eb29c33702de3a (diff)
downloadgit-e3bf2989cad99b67fceeb55ff7b822b5a7e1aff2.tar.gz
refs: handle "refs/bisect/" in `loose_fill_ref_dir()`
That "refs/bisect/" has to be handled specially when filling the ref_cache for loose references is a peculiarity of the files backend, and the ref-cache code shouldn't need to know about it. So move this code to the callback function, `loose_fill_ref_dir()`. Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs/files-backend.c')
-rw-r--r--refs/files-backend.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/refs/files-backend.c b/refs/files-backend.c
index ff9251b9cd..079ba941ef 100644
--- a/refs/files-backend.c
+++ b/refs/files-backend.c
@@ -507,6 +507,21 @@ static void loose_fill_ref_dir(struct ref_store *ref_store,
strbuf_release(&refname);
strbuf_release(&path);
closedir(d);
+
+ /*
+ * Manually add refs/bisect, which, being per-worktree, might
+ * not appear in the directory listing for refs/ in the main
+ * repo.
+ */
+ if (!strcmp(dirname, "refs/")) {
+ int pos = search_ref_dir(dir, "refs/bisect/", 12);
+
+ if (pos < 0) {
+ struct ref_entry *child_entry = create_dir_entry(
+ dir->cache, "refs/bisect/", 12, 1);
+ add_entry_to_dir(dir, child_entry);
+ }
+ }
}
static struct ref_dir *get_loose_refs(struct files_ref_store *refs)