It looks like you have added the binaries or the HUGE folder to GIT.
This is not what you should do with GIT.
If so, consider solutions such as: Git Large file storage
Another relative article can be found here with some sample code for clearing a repo.
Step 1. Identify the large files.
, , . , , , . Mac.
git rev-list master | while read rev; do git ls-tree -lr $rev | cut -c54- | grep -v '^ '; done | sort -u | perl -e '
while (<>) {
chomp;
@stuff=split("\t");
$sums{$stuff[1]} += $stuff[0];
}
print "$sums{$_} $_\n" for (keys %sums);
' | sort -rn >> large_files.txt
2: , .
. large_files.txt - , , :
git filter-branch --tree-filter 'rm -rf `cat /full/path/to/large_files.txt |
cut -d " " -f 2` ' --prune-empty <BRANCHES>