Skip to content

Instantly share code, notes, and snippets.

@akobashikawa
Created September 5, 2025 23:07
Show Gist options
  • Select an option

  • Save akobashikawa/27c3be74f1ecebebbe7df4376f938d5d to your computer and use it in GitHub Desktop.

Select an option

Save akobashikawa/27c3be74f1ecebebbe7df4376f938d5d to your computer and use it in GitHub Desktop.
Lista los archivos grandes que haya en el historial
git rev-list --all --objects | git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' | awk '/^blob/ { print $3, $4 }' | sort -n -r | head -n 20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment