Добавление и объединение с помощью Subtree
Изучите команды для добавления внешнего репозитория в качестве Subtree и получения обновлений из его вышестоящего репозитория
«Добавление и объединение с помощью Subtree» — бесплатный урок Git Advanced: Monorepo, Submodules & Workflows на CoddyKit. Это урок 2 из 4. Ты можешь прочитать весь урок бесплатно ниже — а потом практиковать его прямо в браузере с встроенным редактором кода и ИИ-репетитором 24/7. Это часть пути обучения Git Advanced: Monorepo, Submodules & Workflows, и твой прогресс синхронизируется между веб-версией и приложением CoddyKit. Курс Git Advanced: Monorepo, Submodules & Workflows содержит 4 уроков всего.
Части этого урока еще не переведены и отображаются на английском.
Subtree: Integrating External Code
Welcome! In this lesson, we'll dive into Git Subtree, a powerful way to integrate another Git repository directly into your project.
Unlike submodules, subtree merges the external repository's history into your own, making it feel like a native part of your project.
Why Use `git subtree add`?
Subtree offers a simpler workflow than submodules for many cases. Here are a few benefits:
- No special commands: Once added, you work with subtree content like regular files.
- Single repository: No separate
.gitdirectories or complex submodule initializations. - Easier for consumers: Others cloning your project don't need to learn special submodule commands.
Preparing Your Repository
Before adding a subtree, ensure your main repository is in a clean state (no uncommitted changes). You'll need:
- The URL of the external repository.
- The branch or commit you want to integrate (e.g.,
mainormaster). - A chosen path within your main repository for the subtree.
The `git subtree add` Command
To add an external repository as a subtree, you use the git subtree add command. It looks like this:
git subtree add --prefix=<path> <repository> <ref>
--prefix=<path>: The directory in your project where the subtree will reside.<repository>: The URL of the external Git repository.<ref>: The branch (e.g.,main) or commit hash from the external repo.
Adding an Example Subtree
Let's say you want to add a shared utility-library from a separate Git repository into a src/shared folder in your current project. You would use:
git subtree add --prefix=src/shared/utility-library https://github.com/myorg/utility-library.git main
This command fetches the utility-library's main branch and integrates its history into your src/shared/utility-library directory.
Using the `--squash` Option
When adding a subtree, you'll often see the --squash option:
git subtree add --prefix=path repo_url main --squash
The --squash flag combines all commits from the external repository's history into a single commit in your main project. This keeps your main project's history cleaner, but you lose the individual commit details from the subtree's original history.
Why Update a Subtree?
After you've added a subtree, the original external repository might receive new updates. To keep your integrated code current with the upstream source, you'll need to pull those changes.
This ensures your project always has the latest versions of the shared components or libraries you've included as a subtree.
The `git subtree pull` Command
To pull updates from an upstream subtree, you use a similar command structure:
git subtree pull --prefix=<path> <repository> <ref>
Notice it uses the same --prefix, <repository>, and <ref> as when you added it. Git uses these to identify the correct upstream source for your subtree.
Updating the Example Subtree
Let's continue with our utility-library example. To pull the latest changes from its main branch into your project, you'd run:
git subtree pull --prefix=src/shared/utility-library https://github.com/myorg/utility-library.git main
This command fetches and merges any new commits from the utility-library's main branch into your local src/shared/utility-library directory.
Subtree Command Check
Which command is used to initially incorporate an external repository as a subtree into your project, creating a new directory for it?
Recap: Adding & Merging Subtrees
You've learned how to integrate external repositories using Git Subtree!
- Use
git subtree addwith--prefix, repository URL, and branch to bring external code into your project. - The
--squashoption helps keep your main project's history clean. - Use
git subtree pullwith the same parameters to fetch and merge upstream updates into your subtree.
Subtree provides a powerful, integrated alternative to submodules for managing shared code!
Часто задаваемые вопросы
Урок «Добавление и объединение с помощью Subtree» бесплатный?
Да — полный текст урока «Добавление и объединение с помощью Subtree» бесплатно доступен здесь в веб-версии. Чтобы практиковать его интерактивно (встроенный редактор кода и ИИ-репетитор 24/7) и разблокировать остальной курс Git Advanced: Monorepo, Submodules & Workflows, подпишись на CoddyKit PRO. Курс Git Advanced: Monorepo, Submodules & Workflows содержит 4 уроков всего.
Чему я научусь в уроке «Добавление и объединение с помощью Subtree»?
Изучите команды для добавления внешнего репозитория в качестве Subtree и получения обновлений из его вышестоящего репозитория Ты практикуешь Git Advanced: Monorepo, Submodules & Workflows с помощью реального кода, который запускаешь прямо в браузере, и ИИ-репетитор 24/7 отвечает на твои вопросы во время урока.
Нужен ли мне опыт, чтобы начать Git Advanced: Monorepo, Submodules & Workflows?
Предыдущий опыт не требуется. Git Advanced: Monorepo, Submodules & Workflows на CoddyKit структурирован для всех уровней — от новичков до продвинутых, поэтому ты можешь начать отсюда или с самого начала и учиться в своем темпе. Это урок 2 из 4.
Сколько времени занимает урок «Добавление и объединение с помощью Subtree»?
Большинство уроков CoddyKit занимают около 5–10 минут. Каждый из них компактный и интерактивный, поэтому ты постоянно делаешь прогресс и продолжаешь с того же места в веб-версии и приложении.
Можно ли писать и запускать код в этом уроке Git Advanced: Monorepo, Submodules & Workflows?
Да. Каждый урок Git Advanced: Monorepo, Submodules & Workflows включает встроенный редактор кода, поэтому ты пишешь и запускаешь реальный код прямо в браузере и получаешь моментальную обратную связь от AI — локальная установка не требуется.
Все уроки этого курса
- Введение в Git Subtree
- Добавление и объединение с помощью Subtree
- Сравнение Subtree и Submodule
- Отправка изменений обратно в исходный репозиторий через разделение поддерева