fix: fix `dot` parameters retrieving

now use all parameters *every time*
This commit is contained in:
swytch 2020-06-20 00:00:18 +02:00
parent 471a7686f2
commit 208f658047
1 changed files with 4 additions and 4 deletions

View File

@ -18,16 +18,16 @@ cmd="$git status" # by default, give the status
[ "$1" = "-l" ] && shift && cmd="$git log"
[ "$1" = "-c" ] && shift && cmd="$git commit $@"
[ "$1" = "-ca" ] && shift && cmd="$git commit -a"
[ "$1" = "-cas" ] && shift && cmd="$git commit -S --amend $1"
[ "$1" = "-ch" ] && shift && cmd="$git checkout $1"
[ "$1" = "-cas" ] && shift && cmd="$git commit -S --amend $@"
[ "$1" = "-ch" ] && shift && cmd="$git checkout $@"
[ "$1" = "-mv" ] && shift && cmd="$git mv $@"
[ "$1" = "-ps" ] && shift && cmd="$git push $@"
[ "$1" = "-pl" ] && shift && cmd="$git pull"
[ "$1" = "-a" ] && shift && cmd="$git add $@"
[ "$1" = "-rm" ] && shift && cmd="$git rm --cached $@"
[ "$1" = "-rb" ] && shift && cmd="$git rebase $@"
[ "$1" = "-rbi" ] && shift && cmd="$git rebase -i $1"
[ "$1" = "-rs" ] && shift && cmd="$git reset --soft $1"
[ "$1" = "-rbi" ] && shift && cmd="$git rebase -i $@"
[ "$1" = "-rs" ] && shift && cmd="$git reset --soft $@"
[ "$1" = "-d" ] && shift && cmd="$git diff $@"
if [ "$1" = "-m" ] ; then
shift