How can I DECREASE the maximum file size that I can commit onto Git repository (or, at least, that I can push from my remote server onto a Github repository)?
I want to decrease it from the default 50/100MB of Github, to e.g. 10MB. In particular, when I
git commit -m "Message"
I would like Git to warn (or prohibit) me, saying that files x/y/z are too large.
Reason: I don't need to track such big files, but sometimes, accidentally, I forget to .gitignore them and they slow down the "git push" and "git pull" commands, a lot.
1000 thanks in advance.