How can I adjust my current .hgingore
syntax: glob
oes
images
*.bak
So that it ignores all .bak files? This isn’t working, when I open the commit dialog it still shows a bunch of .php.bak files.
*.bak of course isn’t working
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.
This keeps new .bak files from being added to the Repo. If they are already in the repo, then they will still be tracked. You can
hg forgetthe files to remove them from future revisions in the repo and then with *.bak in .hgignore, you won’t be asked to add them back in.