Listing submodules in Git
In this article, we will discuss Git submodules. We will cover what they are, the purpose of submodules, and the general workflow.
Git submodules allow us to keep one repo as a subdirectory of another repo. In short, a submodule is a reference to another repository within a specific time frame.
What are Git submodules?
If the above explanation didn't make things clear, this one should.
A Git submodule can be likened to a record in the host repository that refers to a commit in another repository. Typically, submodules are static and track a specified commit.
They do not track branches or refs, and are not updated when changes are pushed to the host repository.
Every time we create a submodule in our repo, Git creates a .gitmodules
file. This file contains metadata about the submodule and a mapping to our repo.
Creating multiple submodules will result in multiple gitmodules
.
Creating a Git submodule
The first question we must ask ourselves is when should we create a submodule?
Here are some scenarios where it's best to create Git submodules.
- When subprojects or external components are changing rapidly, it is best to lock your code to a specific commit. The same applies if you anticipate upcoming changes that may break your API.
- When a component is tracked as a vendor dependency. This usually happens when we don't update a particular component regularly.
- When we want to integrate changes from a third party at a specific time. It works best when you don't have frequent updates.
Common Git commands for submodules
Let's look at some common usage options on the command line.
Adding Git submodules
We git add submodule
create a new submodule in our host repository using the command. This is the typical workflow when creating a Git submodule.
$ git submodule add <Repo URL>
git submodule add
The command requires a URL argument pointing to a repo. Git will clone the submodule and we can run git status
the command to see the new repo status.
Let's look at an example. Let's add a submodule to our Delftscopetech
repository.
We can now run git status
the command as shown below.
$ git status
As shown above, we now have two new files, , .gitmodules
and Learn-Submodules
. We can add the files and commit the changes.
git submodule init
We run git submodule init
the command to copy the submodule's mapping from .gitmodules
the ./configure file to our local configuration file. It will appear when we have more than one submodule in our repository.
Listing submodules in Git
git submodule init
The command depends on .gitmodules
the file. We can see a list of all submodules by depending on the same file.
First, we need to parse the file. We run:
$ git config --file .gitmodules --name-only --get-regexp path
Then we can run:
$ git config --file .gitmodules --get-regexp path | awk '{ print $2 }'
The above command will display the path of the submodules present in the repository.
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
Switch remote Git branch
Publish Date:2025/04/04 Views:182 Category:Git
-
This article will show you how to switch remote Git branches using checkout the command. The version control tool that allows you to support and manage variable versions of your application in a team of members is the Git version control to
Switch to a tag in Git
Publish Date:2025/04/04 Views:127 Category:Git
-
Git is one of the top version control systems used by teams around the world. Like other version control systems, Git also allows you to mark certain points in your repository's history as important. Typically, developers use this to mark r
Switching between branches in Git
Publish Date:2025/04/04 Views:64 Category:Git
-
In this article, we will learn how to switch branches in Git. Git is a distributed version control system and is an excellent tool for version control in a collaborative development environment. In Git, we create repositories, and in reposi
Undoing a checkout in Git
Publish Date:2025/04/04 Views:155 Category:Git
-
The command git checkout is used to update the repository to a specific point in the project's history. When we pass it a branch name, it switches to the branch we want to be currently at. This command is also used to undo git add the comma
Undo local changes to a single file in Git
Publish Date:2025/04/04 Views:159 Category:Git
-
In this article, we'll discuss how to roll back files to our preferred versions using commands like git checkout and git reset . Although Git makes it easy to reset files and repositories, the concept of undoing changes in Git is a little m
Difference between Git Switch and Checkout
Publish Date:2025/04/04 Views:182 Category:Git
-
Git is recognized as a unique open source platform that enables users to work with its convenient and simplest command line and a large number of commands. It increases its command line by introducing new versions every day. With the new ve
Reattaching HEAD in Git
Publish Date:2025/04/04 Views:72 Category:Git
-
A Git repository can be defined as a set of objects and references. Branches are the objects we use to represent our work. Git also handles tags that refer to commits in a specific branch. commit Probably the state of the source code at a p
Head in Git
Publish Date:2025/04/04 Views:166 Category:Git
-
Most of the time, in our Git documentation, head refers to the top of a Git repository, called the repository's head . But the question is what exactly is head HEAD in Git ? HEAD In this article, we will learn about that Git HEAD , but befo
Stop tracking a remote branch in Git
Publish Date:2025/04/04 Views:123 Category:Git
-
This article explains how we can stop tracking a remote branch in Git. By now, you must be very familiar with the concept of tracking remote branches. This session will cover the various methods you can use to stop tracking a remote branch.