From 3bb78ce5563f1b1dc91c03d97c713eee1050396d Mon Sep 17 00:00:00 2001 From: Valentin Gehrke Date: Thu, 8 Oct 2015 09:23:29 +0200 Subject: [PATCH] Forgot --- scripts/dotfiles.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/dotfiles.sh b/scripts/dotfiles.sh index eecd410..dbdea5e 100755 --- a/scripts/dotfiles.sh +++ b/scripts/dotfiles.sh @@ -46,13 +46,14 @@ command_help() { echo "commit [message] -- Add all files and commit" echo "status -- Show status" 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 shift case "$CMD" in - diff|commit|add|status|sync|help) + diff|commit|add|status|sync|help|push|pull) command_$CMD $@ ;; *)