I have four kinds of files (source code, databases, docs and executable files)
should I put all of them in the Git repo or should i put only the source code in the repo?
Is there any standard structure to organize my project files?
Thank you
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.
.gitignoreto stop git from suggesting you add any such generated files to your repository.Although people use git for all kinds of strange purposes, in many respects it’s tailored for handling source code.
The structure of your project files isn’t determined by git – it should be suggested by the tools, language, operating system, etc. etc. that you’re using.