Git submodules reference
In a nutshell
Git submodules let you add a Git repository as a subdirectory of another Git repository. This lets you treat them as separate Git projects.
An example use case would be if you have a custom WordPress theme that needs to be used on two separate websites. You can create the theme as its own Git repo and then add the theme repo as a submodule to the two website repos.
The workflow can be something like this:
- Create Git repo for theme code.
- Create separate Git repos for website 1 and website 2.
- Add theme repo as a Git submodule to website 1 and website 2.
- Assuming you’re working on website 1, make changes to your theme (e.g., some CSS changes). Once happy, push the changes to the theme’s Git remote.
- When you’re working on website 2, you can pull the latest changes from theme submodule repo.
Add a submodule
cd
into the website project and add the theme repo as a Git submodule. Let’s assume the theme repo is called sajad-wp-theme
:
This will create a new directory in wp-content/themes/sajad-wp-theme
.
It’ll also create .gitmodules
file with the following content:
The .gitmodules
file is tracked in version control so that other collaborators can easily clone the sub modules.
If you run git diff --cached wp-content-themes/sajad-wp-theme
, you’ll see that Git treats as a submodule and doesn’t track its contents. But it keeps track of the latest commit in the submodule (see last line).
Clone a submodule
By default, when you clone a project with submodules, you get the directories containing the submodules (e.g., wp-content/themes/sajad-wp-theme
), but those directories will be empty.
To fetch the submodules, first run:
This will initialize your local .git/config
file so that it changes from something like:
to:
Notice the addition of the submodule metadata.
Next, run:
To fetch the fetch the data from the submodules and checkout the commit specified in your superproject.
Clone main project along with submodules
View submodules and their latest commits
In a project with submodules, run:
Example output:
Pull latest upstream changes from the submodule remote
Suppose new changes have been committed to a submodule remo and you want to pull in those changes. You can do this in two ways
1. Pull in changes in two steps
cd
into the submodule directory and fetch the latest data from the submodule remote:
to fetch the latest data.
Run git status
and you should be told that your submodule branch is behind the remote branch:
Now, pull in the latest changes:
Now, cd
back to the main project root and run:
You should see that a submodule’s checked out commit has been updated:
If you commit these changes, other collaboraters will also be locked into using this submodule version – which is usually what you want.
2. Pull in changes in single step
Pull changes for all submodules:
Pull changes for specific submodule:
Sources
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment