diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2017-08-23 19:36:57 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-08-24 14:56:10 -0700 |
commit | 2e2d4040bd1c26eccfe0e54b3ab73e13d4bf45e0 (patch) | |
tree | 9ec30a397e0cf8d544fe5d318b964bb387c1bb2e /submodule.c | |
parent | 073cf63c523e3e88a8e002fbc04fc1876f074aef (diff) | |
download | git-2e2d4040bd1c26eccfe0e54b3ab73e13d4bf45e0.tar.gz |
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>
Diffstat (limited to 'submodule.c')
-rw-r--r-- | submodule.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/submodule.c b/submodule.c index e072036e79..98e1f9d3c7 100644 --- a/submodule.c +++ b/submodule.c @@ -69,6 +69,13 @@ int is_staging_gitmodules_ok(const struct index_state *istate) return 1; } +static int for_each_remote_ref_submodule(const char *submodule, + each_ref_fn fn, void *cb_data) +{ + return refs_for_each_remote_ref(get_submodule_ref_store(submodule), + fn, cb_data); +} + /* * Try to update the "path" entry in the "submodule.<name>" section of the * .gitmodules file. Return 0 only if a .gitmodules file was found, a section |