I have push and successively clone a repository with git. I have noticed that git have automatically excluded Configure directory.
Where is this setup? Where I can inform Git to consider that folder too?
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.
How do you know that it is automatically excluded?
There are a couple of things to look for:
*which will exclude everything.excludesfilethis points to a file which is used as the .gitignore file for all your projects on that system.For example here is what I have
I wrote about the three major ways of excluding files in git elsewhere.