Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS DSA TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI R GO KOTLIN SASS VUE GEN AI SCIPY CYBERSECURITY DATA SCIENCE INTRO TO PROGRAMMING BASH RUST

Git Submodules


What Are Git Submodules?

Git submodules let you include one Git repository inside another as a subdirectory.

This is useful for adding libraries or dependencies managed in separate repositories, while keeping their commit history separate.


Why Use Submodules?

Submodules are helpful when you want to:

  • Reuse code from another project
  • Track a library or dependency at a specific commit
  • Keep histories of projects separate

How to Add a Submodule

To add a submodule to your project, use:

Example: Add a Submodule

git submodule add https://github.com/example/library.git libs/library

This creates a subdirectory libs/library and updates .gitmodules with the submodule info.


How to Clone a Repo with Submodules

When you clone a repository with submodules, you need to fetch their contents separately:

Example: Init and Update Submodules

git submodule init
git submodule update

Or do it all at once when cloning:

Example: Clone with Submodules

git clone --recurse-submodules https://github.com/user/repo.git


How to Check Submodule Status

To see the current commit and state of your submodules, use:

Example: Submodule Status

git submodule status

How to Run Commands in All Submodules

You can run a command in every submodule. For example, to check their status:

Example: foreach

git submodule foreach git status

How to Update Submodules

To update submodules to the latest commit from their remote repository:

Example: Update All Submodules

git submodule update --remote

How to Remove a Submodule

To remove a submodule:

  • Delete the relevant section from .gitmodules
  • Remove the submodule directory from your working tree
  • Run git rm --cached path/to/submodule

About .gitmodules

The .gitmodules file keeps track of all submodules and their paths. Edit this file if you move or remove submodules.

Example: .gitmodules File

[submodule "libs/library"]
  path = libs/library
  url = https://github.com/example/library.git

Troubleshooting and Best Practices

  • If submodules are empty after cloning, run git submodule update --init --recursive.
  • If you change a submodule's URL, update both .gitmodules and .git/config.
  • Submodules always point to a specific commit, not always the latest—remember to update if you want new changes.
  • Keep submodules for external projects you want to track at a fixed version. For simpler needs, consider alternatives like Git subtree or copying files.

Note: Submodules are powerful, but can be tricky to manage.

Only use them if you really need to track another project at a specific commit.




×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2025 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.