gedankensplitter/git_usage.md
2023-03-11 14:17:21 +01:00

264 B

git

git file permission ignore

git config core.fileMode false

cheat sheet

find and clean up repositories recursvely find . -type d -name '.git' -prune -execdir bash -c "pwd; git reflog expire --all --expire=now; git gc --aggressive --prune=now" \;