Posts
Finding Large Files in repos
by danaukes
```bash git rev-list --all --objects | awk '{print $1}' | git cat-file --batch-check | sort -k3n ...
Finding Submodules
by danaukes
find repos/ -not \( -path repos/external -prune \) -iname .gitmodules -type f
```bash git submodule update --init ...