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 ...
installing gitman on windows
by danaukes
Support for multiple github accounts
install choco
Set-ExecutionPolicy AllSigned Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = ...
Git Secret
by danaukes
make a new key for my_email@emailaddress.com
```bash git secret init echo "this is my secret" >> my_secret.txt echo "my_secret.txt" ...