Allow .gitignore to support setting a file size limit so that all files over a certain size will by automatically ignored when performing git add, commit -a...; Exclusions to this size limit for files can be allowed by specifying exceptions '!' syntax that already exists. It probably should be considered to have a default limit already built into git of say 100MB (used by github) which can be changed in the .gitignore file. This would avoid accidental commits of large files which are known to be poorly supported. This seems like a fairly simple feature to add, I'm not sure why no one has done this or thought of it given the number of complaints, questions... with large file handling. We can ignore by file name attribute, why not by file size? Yes, I know I can add pre-commit scripts... to workaround this issue, but there should be a better way (or maybe I'm missing something?). Accidental commits of large files is a common mistake, and often results in the commit taking an extremely long time to process and sometimes if you kill the process, then you end up with corrupt git repo (at least in jgit, which is used by Netbeans). IMHO this would be a very useful feature. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html