]> git.ipfire.org Git - thirdparty/git.git/blobdiff - submodule.h
fetching submodules: respect `submodule.fetchJobs` config option
[thirdparty/git.git] / submodule.h
index 346450062982850b71dfc925629f1ef51c8a4662..3166608fb55c81ff4c0a147c31bb9a3052fd0bc2 100644 (file)
@@ -26,6 +26,7 @@ struct submodule_update_strategy {
        enum submodule_update_type type;
        const char *command;
 };
+#define SUBMODULE_UPDATE_STRATEGY_INIT {SM_UPDATE_UNSPECIFIED, NULL}
 
 int is_staging_gitmodules_ok(void);
 int update_path_in_gitmodules(const char *oldpath, const char *newpath);
@@ -57,5 +58,6 @@ int find_unpushed_submodules(unsigned char new_sha1[20], const char *remotes_nam
                struct string_list *needs_pushing);
 int push_unpushed_submodules(unsigned char new_sha1[20], const char *remotes_name);
 void connect_work_tree_and_git_dir(const char *work_tree, const char *git_dir);
+int parallel_submodules(void);
 
 #endif