It was fetch, but this was rather unintuitive.
# 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