Is it possible in mercurial to ignore changes within an entire directory.

For example I would like mercurial to not tell me that changes to the "class" directory have occurred since I don't want to version control the *.class files for my project.

link|improve this question

There are already several questions on stackoverflow about this, in addition to google hits for 'Mercurial ignore'. How did you search? – pc1oad1etter Mar 29 '10 at 1:17
I had a misunderstanding of how hg forget functioned and was searching based on that. Searching for mercurial ignore turns up everything I want. thanks. – Seth M. Mar 29 '10 at 13:14
feedback

1 Answer

up vote 9 down vote accepted

You'll want to set up a rule in your .hgignore file.

There's a pretty good explanation here: http://mercurial.selenic.com/wiki/.hgignore

link|improve this answer
excellent, I feel silly for not being able to find that on my own. Thanks! – Seth M. Mar 25 '10 at 14:23
Glad I could help! – chills42 Mar 25 '10 at 14:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.