From: Simon Ruderich Date: Sun, 1 Mar 2009 14:30:18 +0000 (+0100) Subject: sync.sh: Status is the default command now. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=7821db6c9f585f95459f04bd216a417194a29dc4 sync.sh: Status is the default command now. It was fetch, but this was rather unintuitive. --- diff --git a/sync.sh b/sync.sh index e76ce8e..a3f9eaf 100755 --- a/sync.sh +++ b/sync.sh @@ -6,12 +6,12 @@ # Select the method: fetch, push and status is possible. -if [ x$1 = x -o x$1 = xfetch -o x$1 = xfe ]; then +if [ x$1 = x -o x$1 = xstatus -o x$1 = xst ]; then + method=status +elif [ $1 = fetch -o $1 = fe ]; then method=fetch elif [ $1 = push -o $1 = pu ]; then method=push -elif [ $1 = status -o $1 = st ]; then - method=status else echo "Usage: sync.sh [fetch | fe | push | pu | status | st]" echo