2020-05-20 18:34:34 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
######################################################################
|
2020-05-23 15:47:21 +02:00
|
|
|
# @author : swytch
|
|
|
|
# @file : dot
|
2020-06-25 18:19:40 +02:00
|
|
|
# @license : MIT
|
2020-05-23 15:47:21 +02:00
|
|
|
# @created : Wednesday May 20, 2020 18:13:05 CEST
|
2020-05-20 18:34:34 +02:00
|
|
|
#
|
2020-05-23 15:47:21 +02:00
|
|
|
# @description : git wrapper for dotfiles management
|
2020-05-20 18:34:34 +02:00
|
|
|
######################################################################
|
2020-05-06 03:20:19 +02:00
|
|
|
|
|
|
|
|
|
|
|
git="/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME"
|
|
|
|
|
2020-11-12 18:03:45 +01:00
|
|
|
case $1 in
|
|
|
|
-*)
|
|
|
|
[ "$1" = "-l" ] && shift && cmd="$git log"
|
|
|
|
[ "$1" = "-lg" ] && shift && cmd="$git log --graph --format=short"
|
|
|
|
[ "$1" = "-c" ] && shift && cmd="$git commit $@"
|
|
|
|
[ "$1" = "-ca" ] && shift && cmd="$git commit -a"
|
|
|
|
[ "$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" = "-b" ] && shift && cmd="$git branch $@"
|
|
|
|
[ "$1" = "-s" ] && shift && cmd="$git show $@"
|
|
|
|
[ "$1" = "-rm" ] && shift && cmd="$git rm --cached $@"
|
|
|
|
[ "$1" = "-rb" ] && shift && cmd="$git rebase $@"
|
|
|
|
[ "$1" = "-rbi" ] && shift && cmd="$git rebase -i $@"
|
|
|
|
[ "$1" = "-rs" ] && shift && cmd="$git reset --soft $@"
|
|
|
|
[ "$1" = "-d" ] && shift && cmd="$git diff $@"
|
|
|
|
if [ "$1" = "-m" ] ; then
|
2020-05-06 03:20:19 +02:00
|
|
|
shift
|
2020-11-12 18:03:45 +01:00
|
|
|
[ "$1" = "" ] && echo "Please provide a branche to merge from" && exit 1
|
|
|
|
if [ "$1" != "-a" ] ; then
|
|
|
|
while [ "$1" != "" ] ; do
|
|
|
|
$git checkout $1 && $git merge dev
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
else
|
|
|
|
branches="$(echo "$($git branch)" | sed -e 's/\*/ /;t')"
|
|
|
|
for arg in $branches ; do
|
|
|
|
if [ "$arg" != "dev" ] ; then
|
|
|
|
$git checkout $arg && $git merge dev
|
|
|
|
fi
|
|
|
|
done
|
2020-05-06 03:20:19 +02:00
|
|
|
fi
|
2020-11-12 18:03:45 +01:00
|
|
|
cmd="$git checkout dev"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
[ "$1" != "" ] && cmd="$git $@" || cmd="$git status"
|
|
|
|
;;
|
|
|
|
esac
|
2020-05-06 03:20:19 +02:00
|
|
|
|
|
|
|
$cmd
|