| 101 | } |
| 102 | |
| 103 | static int for_each_remote_ref_submodule(const char *submodule, |
| 104 | refs_for_each_cb fn, void *cb_data) |
| 105 | { |
| 106 | return refs_for_each_remote_ref(repo_get_submodule_ref_store(the_repository, |
| 107 | submodule), |
| 108 | fn, cb_data); |
| 109 | } |
| 110 | |
| 111 | /* |
| 112 | * Try to update the "path" entry in the "submodule.<name>" section of the |
no test coverage detected