Should I include 3rd party libs in my public repo, or just add them as a requirement in a readme?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Is it a library stored in
gitand you are tracking an unstable or development tree? Usegit 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.