gedankensplitter/git_usage.md
2023-08-10 17:52:26 +02:00

464 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" \;

gnome key store

to change/activate git credential storing within the gnome key store: git config --global credential.helper libsecret

merge editor

:git config --global core.editor "vim"