diff options
author | Stefan Beller <sbeller@google.com> | 2018-04-12 02:21:14 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-04-12 04:38:56 +0200 |
commit | 64a741619d27ede27788d2d444257635f4af8ffd (patch) | |
tree | 5885bcd8f939e2e638fe3b1e80c575de6558141e /refs.h | |
parent | replace-object: add repository argument to lookup_replace_object (diff) | |
download | git-64a741619d27ede27788d2d444257635f4af8ffd.tar.xz git-64a741619d27ede27788d2d444257635f4af8ffd.zip |
refs: store the main ref store inside the repository struct
This moves the 'main_ref_store', which was a global variable in refs.c
into the repository struct.
This patch does not deal with the parts in the refs subsystem which deal
with the submodules there. A later patch needs to get rid of the submodule
exposure in the refs API, such as 'get_submodule_ref_store(path)'.
Acked-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs.h')
-rw-r--r-- | refs.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -760,9 +760,7 @@ int reflog_expire(const char *refname, const struct object_id *oid, int ref_storage_backend_exists(const char *name); -#define get_main_ref_store(r) \ - get_main_ref_store_##r() -struct ref_store *get_main_ref_store_the_repository(void); +struct ref_store *get_main_ref_store(struct repository *r); /* * Return the ref_store instance for the specified submodule. For the * main repository, use submodule==NULL; such a call cannot fail. For |