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
|
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
| |||
feedback
|
|
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. | |||
|
feedback
|
|
Clever notion. There's no built-in functionality for that, but you could rig up something like:
You could run that in a | |||
|
feedback
|