My git is hanging at 6% of writting files to a remote repo.
Is there any git command that would let me know the file sizes that are about to be pushed? I am concerned that might be the reason is not letting me do the push.
My git is hanging at 6% of writting files to a remote repo.
Is there any git command that would let me know the file sizes that are about to be pushed? I am concerned that might be the reason is not letting me do the push.
You can figure out how big your repository is with:
git bundle create foo.bundle --all
du -sh foo.bundle
If you just think the culprit is a specific commit rather than the overall repository size (e.g. because you think a large binary might have accidentally slipped in somewhere), then you can identify large blobs with this Perl script.
If you are not allowed to push, you can't push the first 6%.
Looks like a MTU network problem to me: http://en.wikipedia.org/wiki/Maximum_transmission_unit