I know there is a way to get mercurial to ignore specific files using hgignore.

Is there a way to get it to ignore all files above a certain size?

Thanks

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Unfortunately matching in .hgignore is done just by filenaming. However, nothing prevents you from writing a pre-commit hook that autocreates (appends) .hgignore files based on their size.

link|improve this answer
feedback

Clever notion. There's no built-in functionality for that, but you could rig up something like:

find -type f -size +10M > .hgignore

You could run that in a precommit hook, but you'll want to delete the lines from the previous entry.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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