feat: add flags to `.local/bin/dot`

-ca = commit -a
-rb = rebase
-rbi = rebase -i
This commit is contained in:
swy7ch 2020-05-07 19:10:32 +02:00
parent e4539c77f9
commit 6d890c08be
1 changed files with 3 additions and 1 deletions

View File

@ -9,6 +9,7 @@ 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" = "-mv" ] && shift && cmd="$git mv $@"
@ -16,7 +17,8 @@ cmd="$git status" ## by default, give the status
[ "$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 -i $1"
[ "$1" = "-rb" ] && shift && cmd="$git rebase $@"
[ "$1" = "-rbi" ] && shift && cmd="$git rebase -i $1"
[ "$1" = "-rs" ] && shift && cmd="$git reset --soft $1"
[ "$1" = "-d" ] && shift && cmd="$git diff $@"
if [ "$1" = "-m" ] ; then