I use mercurial for php projects and my .hgignore file is not working. It’s supposed to be placed in the .hg/ folder, isn’t it?
.hgignore
/.hg/.hgignore file
# Allow *. syntax
syntax:glob
# Ignore these files
.hgignore
.htaccess
.hg/*
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.
There is no mention in the .hgignore page of that file being inside
.hg:And whatever file you want to ignore, you must be sure they are not already tracked. If they are, you need to remove them first, and then add them as private (non-tracked) file.