Top "Git-submodules" questions

Submodules allow you to keep a Git repository as a subdirectory of another Git repository.

Easy way to pull latest of all git submodules

We're using git submodules to manage a couple of large projects that have dependencies on many other libraries we've developed. …

git git-submodules
How to "git clone" including submodules?

I'm trying to put a submodule into a repo. The problem is that when I clone the parent repo, the …

git git-submodules
How do I remove a submodule?

How do I remove a Git submodule? By the way, is there a reason I can't simply do git submodule …

git git-submodules
How do I pull from a Git repository through an HTTP proxy?

Note: while the use-case described is about using submodules within a project, the same applies to a normal git clone …

git proxy git-submodules
Update Git submodule to latest commit on origin

I have a project with a Git submodule. It is from an ssh://... URL, and is on commit A. Commit …

git git-submodules git-pull
How can I specify a branch/tag when adding a Git submodule?

How does git submodule add -b work? After adding a submodule with a specific branch, a new cloned repository (after …

git git-submodules
How to change the remote repository for a git submodule?

I've created a git repository with a submodule in it. I'm able to tell the submodule itself to change its …

git git-submodules
Git update submodules recursively

My project struture ProjectA -FrameworkA (submodule) --Twig (submodule of FrameworkA) How I can update submodules recursively? I already tried some …

git git-submodules
No submodule mapping found in .gitmodule for a path that's not a submodule

I have a project that has a submodule at lib/three20 My .gitmodule file looks like this: [submodule "lib/three20"] …

git git-submodules
Git submodule update

I'm not clear on what the following means (from the Git submodule update documentation): ...will make the submodules HEAD be …

git git-submodules