If you are on Windows, here is a PowerShell script that will print the 10 largest files in your repository:
$revision_objects = git rev-list --objects --all;$files = $revision_objects.Split() | Where-Object {$_.Length -gt 0 -and $(Test-Path -Path $_ -PathType Leaf) };$files | Get-Item -Force | select fullname, length | sort -Descending -Property Length | select -First 10