Quantcast
Channel: How can I find/identify large commits in Git history? - Stack Overflow
Viewing all articles
Browse latest Browse all 29

Answer by Julia Schwarz for How to find/identify large commits in git history?

$
0
0

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

Viewing all articles
Browse latest Browse all 29

Trending Articles