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

Answer by Aaron for How can I find/identify large commits in Git history?

$
0
0

Powershell solution for windows git, find the largest files:

git ls-tree -r -t -l --full-name HEAD | Where-Object { $_ -match '(.+)\s+(.+)\s+(.+)\s+(\d+)\s+(.*)' } | ForEach-Object { New-Object -Type PSObject -Property @{'col1'        = $matches[1]'col2'      = $matches[2]'col3' = $matches[3]'Size'      = [int]$matches[4]'path'     = $matches[5] } } | sort -Property Size -Top 10 -Descending

Viewing all articles
Browse latest Browse all 29

Trending Articles