This commit is contained in:
madmaurice 2015-10-08 09:23:29 +02:00
parent 79e42c2f64
commit 3bb78ce556

View file

@ -46,13 +46,14 @@ command_help() {
echo "commit [message] -- Add all files and commit" echo "commit [message] -- Add all files and commit"
echo "status -- Show status" echo "status -- Show status"
echo "add [file] [savepoint] -- Add file to dotfiles at savepoint, create symlink and add" echo "add [file] [savepoint] -- Add file to dotfiles at savepoint, create symlink and add"
echo "sync -- push and pull" echo "push -- git push"
echo "pull -- git pull"
} }
CMD=$1 CMD=$1
shift shift
case "$CMD" in case "$CMD" in
diff|commit|add|status|sync|help) diff|commit|add|status|sync|help|push|pull)
command_$CMD $@ command_$CMD $@
;; ;;
*) *)