This commit is contained in:
Michael Grote 2022-09-01 13:01:06 +02:00
parent 1d86fdd6d8
commit 1b2184cab4

View file

@ -5,7 +5,7 @@ if command -v tmux &> /dev/null && [ -z "$TMUX" ]; then
fi
### keychain
eval $(keychain -q --eval --timeout 60 --agents ssh)
eval "$(keychain -q --eval --timeout 60 --agents ssh)"
### PS1
# git-symbole: * unstaged, + staged, $ stashed, % untracked
@ -64,7 +64,7 @@ function sgc {
echo "[ERROR] Suchbegriff fehlt..."
;;
*)
git grep "$1" $(git rev-list --all)
git grep "$1" "$(git rev-list --all)"
esac
}
function m2m {