Skip to content

Instantly share code, notes, and snippets.

@ryandaniels
Forked from SKempin/Git Subtree basics.md
Last active March 16, 2022 10:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ryandaniels/6681e7b25658173d4423776b5de024ce to your computer and use it in GitHub Desktop.
Save ryandaniels/6681e7b25658173d4423776b5de024ce to your computer and use it in GitHub Desktop.
Git Subtree basics

Git Subtree Basics

If you hate git submodule, then you may want to give git subtree a try.

Background

When you want to use a subtree, you add the subtree to an existing repository where the subtree is a reference to another repository url and branch/tag. This add command adds all the code and files into the main repository locally; it's not just a reference to a remote repo.

When you stage and commit files for the main repo, it will add all of the remote files in the same operation. The subtree checkout will pull all the files in one pass, so there is no need to try and connect to another repo to get the portion of subtree files, because they were already included in the main repo.

Adding a subtree

Let's say you already have a git repository with at least one commit. You can add another repository into this respository like this:

  1. Specify you want to add a subtree
  2. Specify the prefix local directory into which you want to pull the subtree
  3. Specify the remote repository URL [of the subtree being pulled in]
  4. Specify the remote branch [of the subtree being pulled in]
  5. Specify you want to squash all the remote repository's [the subtree's] logs

git subtree add --prefix {local directory being pulled into} {remote repo URL} {remote branch} --squash

For example:

git subtree add --prefix subtreeDirectory https://github.com/newfivefour/vimrc.git master --squash

This will clone https://github.com/newfivefour/vimrc.git into the directory subtreeDirectory.


Pull in new subtree commits

If you want to pull in any new commits to the subtree from the remote, issue the same command as above, replacing add for pull:

git subtree pull --prefix subtreeDirectory https://github.com/newfivefour/vimrc.git master --squash


Updating / Pushing to the subtree remote repository

If you make a change to anything in subtreeDirectory the commit will be stored in the host repository and its logs. That is the biggest change from submodules.

If you now want to update the subtree remote repository with that commit, you must run the same command, excluding --squash and replacing pull for push.

git subtree push --prefix subtreeDirectory https://github.com/newfivefour/vimrc.git master


List subtrees

(From xor2003's comment https://gist.github.com/SKempin/b7857a6ff6bddb05717cc17a44091202#gistcomment-3042352)
Since subtree must have a folder with the same name in the root folder of the repository, you can run this to get the info you want (in Bash shell):

git log | grep git-subtree-dir | tr -d ' ' | cut -d ":" -f2 | sort | uniq

Now, this doesn't check whether the folder exist or not (you may delete it and the subtree mechanism won't know), so here's how you can list only the existing subtrees, this will work in any folder in the repository:

git log | grep git-subtree-dir | tr -d ' ' | cut -d ":" -f2 | sort | uniq | xargs -I {} bash -c 'if [ -d $(git rev-parse --show-toplevel)/{} ] ; then echo {}; fi'


Subtree issues

  • It isn't readily apparent that part of the main repo is built from a subtree
  • You can't easily list the subtrees in your project
  • You can't, at least easily, list the remote repositories of the subtrees
  • The logs are slightly confusing when you update the host repository with subtree commits, then push the subtree to its host, and then pull the subtree.

Other than that, they're looking nicer than submodules.

Amended from original articles:

  1. https://newfivefour.com/git-subtree-basics.html
  2. https://docs.acquia.com/articles/using-git-subtrees-instead-git-submodules
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment