Posts in git
Finding Large Files in repos
by Dan Aukes
```bash git rev-list --all --objects | awk '{print $1}' | git cat-file --batch-check | sort -k3n ...
Finding Submodules
by Dan Aukes
find repos/ -not \( -path repos/external -prune \) -iname .gitmodules -type f
```bash git submodule update --init ...
installing gitman on windows
by Dan Aukes
Support for multiple github accounts
install choco
Set-ExecutionPolicy AllSigned Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = ...
Git Secret
by Dan Aukes
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" ...
github actions info
by Dan Aukes
Using Hugo with Github Actions
- automated deploytment on github pages
- [detailed ...