refs.c: move for_each_remote_ref_submodule() to submodule.c
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Nguyễn Thái Ngọc Duy committed
Aug 23, 2017 at 19:36 UTC
2e2d4040bd1c26eccfe0e54b3ab73e13d4bf45e0
3 files changed
+7
-8
refs.c
-6
@@ -368,12 +368,6 @@ int for_each_remote_ref(each_ref_fn fn, void *cb_data)
368
return refs_for_each_remote_ref(get_main_ref_store(), fn, cb_data);
369
}
370
371
-int for_each_remote_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
372
-{
373
- return refs_for_each_remote_ref(get_submodule_ref_store(submodule),
374
- fn, cb_data);
375
-}
376
-
371
int head_ref_namespaced(each_ref_fn fn, void *cb_data)
372
{
373
struct strbuf buf = STRBUF_INIT;
refs.h
-2
@@ -313,8 +313,6 @@ int for_each_tag_ref_submodule(const char *submodule,
313
each_ref_fn fn, void *cb_data);
314
int for_each_branch_ref_submodule(const char *submodule,
315
each_ref_fn fn, void *cb_data);
316
-int for_each_remote_ref_submodule(const char *submodule,
317
- each_ref_fn fn, void *cb_data);
316
317
int head_ref_namespaced(each_ref_fn fn, void *cb_data);
318
int for_each_namespaced_ref(each_ref_fn fn, void *cb_data);
submodule.c
+7
@@ -69,6 +69,13 @@ int is_staging_gitmodules_ok(const struct index_state *istate)
69
return 1;
70
}
71
72
+static int for_each_remote_ref_submodule(const char *submodule,
73
+ each_ref_fn fn, void *cb_data)
74
+{
75
+ return refs_for_each_remote_ref(get_submodule_ref_store(submodule),
76
+ fn, cb_data);
77
+}
78
+
79
/*
80
* Try to update the "path" entry in the "submodule.<name>" section of the
81
* .gitmodules file. Return 0 only if a .gitmodules file was found, a section