git_submodule_add_setup

Set up a new git submodule for checkout.

This does "git submodule add" up to the fetch and checkout of the submodule contents. It preps a new submodule, creates an entry in .gitmodules and creates an empty initialized repository either at the given path in the working directory or in .git/modules with a gitlink from the working directory to the new repo.

To fully emulate "git submodule add" call this function, then open the submodule repo and perform the clone step as needed (if you don't need anything custom see git_submodule_add_clone()). Lastly, call git_submodule_add_finalize() to wrap up adding the new submodule and .gitmodules to the index to be ready to commit.

You must call git_submodule_free on the submodule object when done.

@param out_ The newly created submodule ready to open for clone @param repo The repository in which you want to create the submodule @param url URL for the submodule's remote @param path Path at which the submodule should be created @param use_gitlink Should workdir contain a gitlink to the repo in .git/modules vs. repo directly in workdir. @return 0 on success, git_error_code.GIT_EEXISTS if submodule already exists, -1 on other errors.

extern (C) nothrow @nogc
int
git_submodule_add_setup

Meta