Should I include 3rd party libs in my public repo, or just add them as a requirement in a readme?
views:
34answers:
1
+3
A:
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.
Yann Ramin
2010-05-29 03:05:32