0Pricing
Git Advanced: Monorepo, Submodules & Workflows · Leçon

Introduction à Git Subtree

Comprenez ce qu’est Git Subtree, en quoi il diffère des sous-modules et quels sont ses principaux avantages pour l’intégration de projets.

Introduction à Git Subtree est une leçon Git Advanced: Monorepo, Submodules & Workflows gratuite sur CoddyKit. Ceci est la leçon 1 sur 4. Tu peux lire la leçon complète ci-dessous gratuitement — puis la pratiquer en direct dans le navigateur avec un éditeur de code intégré et un tuteur IA 24/7. Elle fait partie du parcours d'apprentissage Git Advanced: Monorepo, Submodules & Workflows, et ta progression se synchronise sur le web et l'application CoddyKit. Le cours Git Advanced: Monorepo, Submodules & Workflows comprend 4 leçons au total.

Certaines parties de cette leçon n'ont pas encore été traduites et s'affichent en anglais.

Discover Git Subtree

Welcome! In this lesson, we'll explore Git Subtree. It's a way to embed another Git repository inside your own, essentially merging its history and files into a subdirectory.

Think of it as an alternative to Git Submodules for managing external dependencies or shared code within a single project.

Subtree vs. Submodule: Key Difference

The core difference between Subtree and Submodule lies in how they integrate external code:

  • Submodules: Store a reference (a specific commit hash) to an external repository. The external code lives separately, managed as a distinct repository.
  • Subtree: Integrates the external repository's code and its history directly into your main repository. It's like a deep copy with the ability to link back to the original.

How Subtree Works Internally

When you add a subtree, Git performs a specialized merge operation. It takes the history of the external repository and 'rewrites' it to appear as if it always existed within a specific subdirectory of your main project.

This means you can treat the subtree's files just like any other files in your repository, using standard Git commands.

Benefit 1: Simplified Workflow

One major advantage of Git Subtree is its simplicity. There are no special .gitmodules files to track, nor do you need to initialize or update submodules after cloning.

Your entire project, including the subtree's content, is managed with standard Git commands like git clone and git pull.

Benefit 2: Everything in One Repo

With Git Subtree, all your code lives in a single repository. This can simplify several aspects of development:

  • Cloning: A single git clone command fetches everything.
  • Branching: Changes across your main project and the subtree can be made on one branch.
  • CI/CD: Builds and tests typically don't need to fetch separate repositories.

Benefit 3: Smoother Collaboration

Many developers find subtrees easier to work with. Collaborators don't need to learn new Git commands specific to submodules or deal with their unique quirks.

The external code is simply part of the main repository, reducing potential friction when setting up development environments or fetching updates.

Adding a Subtree: The Command

To add a new external project as a subtree, you use the git subtree add command. You'll specify:

  • The prefix (the subdirectory where it will live).
  • The URL of the external repository.
  • The branch you want to pull from (e.g., main or master).

Example: Adding a Subtree

Let's say you want to add a common utility library from GitHub into a vendor/utils directory in your project:

git subtree add --prefix=vendor/utils \
  https://github.com/myorg/common-utils.git main \
  --squash

The `--squash` Option Explained

Notice the --squash option in the previous example. This is very useful when adding a subtree!

It takes all the commits from the external repository's history and condenses them into a single commit when adding them to your main project. This prevents your main repository's history from being cluttered with potentially hundreds of commits from the external project.

Quick Check

Git Subtree offers distinct advantages over submodules in certain scenarios. Let's test your understanding.

Recap: Git Subtree Basics

Great job! In this lesson, we introduced Git Subtree, a powerful alternative to submodules for integrating external projects. You learned that subtrees merge external code directly into your repository, simplifying workflows and keeping all code in one place.

We also covered the git subtree add command and the benefit of the --squash option for cleaner history.

Questions Fréquemment Posées

La leçon « Introduction à Git Subtree » est-elle gratuite ?

Oui — le texte complet de « Introduction à Git Subtree » est gratuit à lire ici sur le web. Pour la pratiquer de manière interactive (un éditeur de code intégré et un tuteur IA 24/7) et déverrouiller le reste du cours Git Advanced: Monorepo, Submodules & Workflows, passe à CoddyKit PRO. Le cours Git Advanced: Monorepo, Submodules & Workflows comprend 4 leçons au total.

Qu'est-ce que j'apprendrai dans « Introduction à Git Subtree » ?

Comprenez ce qu’est Git Subtree, en quoi il diffère des sous-modules et quels sont ses principaux avantages pour l’intégration de projets. Tu pratiques Git Advanced: Monorepo, Submodules & Workflows avec du code pratique que tu exécutes directement dans le navigateur, et un tuteur IA 24/7 répond à tes questions au fur et à mesure que tu avances dans la leçon.

Dois-je avoir de l'expérience pour commencer Git Advanced: Monorepo, Submodules & Workflows ?

Aucune expérience préalable n'est requise. Git Advanced: Monorepo, Submodules & Workflows sur CoddyKit est structuré pour les débutants jusqu'aux apprenants avancés, donc tu peux commencer ici ou depuis le début et avancer à ton rythme. Ceci est la leçon 1 sur 4.

Combien de temps prend la leçon « Introduction à Git Subtree » ?

La plupart des leçons CoddyKit prennent environ 5–10 minutes. Chacune est courte et interactive, tu progresses régulièrement et tu repiques exactement où tu t'es arrêté sur le web et l'app.

Peux-tu écrire et exécuter du code dans cette leçon Git Advanced: Monorepo, Submodules & Workflows ?

Oui. Chaque leçon Git Advanced: Monorepo, Submodules & Workflows inclut un éditeur de code intégré, tu écris et exécutes du vrai code directement dans ton navigateur et tu reçois des retours IA instantanés — aucune configuration locale requise.

Toutes les leçons de ce cours

  1. Introduction à Git Subtree
  2. Ajout et fusion avec Subtree
  3. Comparaison entre Subtree et sous-module
  4. Renvoyer les changements en amont avec Subtree Split
← Retour à Git Advanced: Monorepo, Submodules & Workflows