SC2046
This commit is contained in:
parent
1d86fdd6d8
commit
1b2184cab4
1 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue