Continue reading »
Alternatives To Git Submodule: Git Subtree
- By Nicola Paolucci
- Developer
- On May 16, 2013
The Internet is full of articles on why you should not use Git submodules. I mostly agree, although I am not so harsh in my evaluation. As I explained in a previous post, submodules are useful for a few use cases but have several drawbacks.
Are there alternatives? The answer is: yes! There are (at least) two tools that can help track the history of software dependencies in your project while allowing you to keep using git:
git subtree
google repo
In this post I will be looking at git subtree

