Reputation: 554
Should I include 3rd party libs in my public repo, or just add them as a requirement in a readme?
Upvotes: 2
Views: 113
Reputation: 33177
Is it a library stored in git
and you are tracking an unstable or development tree? Use git submodule
.
If the library is not stored in git, but you are tracking an unstable tool, write a small shell script to automate your life of fetching the required source.
Is it a released library? Require the user to provide it.
Upvotes: 3