Is there a way to guestimate the size of a git push before actually pushing?
My use case is that a large push size is a good indicator that I likely inadvertenly included some binaries in the staging area (since I usually add with git add . -A). I know I can do a git add . -A -n piped with a grep for the file extensions to watch out for, but a push dry run, so to speak, just to estimate the size would offer some additional reassurance.