Discussion: Use git subtree
for libraries
#237
EmperorArthur
started this conversation in
Polls
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Several recent PRs have included libraries, and we need to figure out how to handle them. Especially since some are extremely useful, and would reduce the code we have to maintain.
I see a few options:
git submodule
.git subtree
.Thoughts?
Edit:
Now that I've taken a closer look, git subtree looks far less appealing. I'm leaning towards submodules, and just adding documentation to set
git config --global submodule.recurse true
[1] before initial checkout.We aren't looking to perform edits in the libraries themselves directly through the submodules, and said libraries don't change often enough to cause some of the pain others have with submodules.
Beta Was this translation helpful? Give feedback.
All reactions