About 166,000 results
Open links in new tab
  1. Git - Submodules

    Submodules allow you to keep a Git repository as a subdirectory of another Git repository. This lets you clone another repository into your project and keep your commits separate. We’ll walk …

  2. How to Use Git Submodules – Explained With Examples

    May 7, 2024 · To add a Git submodule, first ensure that you are within a Git repository, and you have the URL of the remote repository you want to add as a submodule. Then, use the git …

  3. Git submodule | Atlassian

    A Git submodule is a record within a host Git repository that points to a specific commit in another external repository. Submodules are very static and only track specific commits.

  4. Git Submodule - GeeksforGeeks

    Jul 23, 2025 · What is a Git Submodule? A Git submodule is a repository embedded inside another Git repository. The main repository, known as the superproject, tracks the …

  5. Git Submodules - W3Schools

    Drag and drop the correct command to add a submodule to your project. Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, …

  6. Working with Git submodules: A practical guide (with examples)

    Jan 27, 2024 · In this guide, we’ll explore the ins and outs of working with Git submodules and demonstrate practical usage with examples. To add a new submodule to your project, use the …

  7. Git - git-submodule Documentation

    Inspects, updates and manages submodules. For more information about submodules, see gitsubmodules [7]. With no arguments, shows the status of existing submodules. Several …

  8. How to Use the Git Submodule Init and Update Command?

    Jul 23, 2025 · The `git submodule init` and `git submodule update` commands are essential for initializing and updating submodules. This guide will explain how to use these commands …

  9. Git - gitsubmodules Documentation

    DESCRIPTION A submodule is a repository embedded inside another repository. The submodule has its own history; the repository it is embedded in is called a superproject.

  10. How to Add Submodule in Git? - GeeksforGeeks

    Jul 23, 2025 · In simple terms, A submodule in Git is a nested Git repository within another Git repository. It allows you to include another Git repository as a subdirectory within your own …