diff options
author | freku045@student.liu.se <freku045@student.liu.se> | 2005-12-13 23:30:31 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-14 02:53:43 -0800 |
commit | 806f36d4d7caf75b6d3e098cb0353d85d3477c7d (patch) | |
tree | 7925350d3228cd00602abb91fe8712c236ddb2bb /git-pull.sh | |
parent | aa9dc7afd2fc40466b430b35fc5c82d3c820cb26 (diff) | |
download | git-806f36d4d7caf75b6d3e098cb0353d85d3477c7d.tar.gz git-806f36d4d7caf75b6d3e098cb0353d85d3477c7d.tar.xz |
Trivial usage string clean-up
Signed-off-by: Fredrik Kuivinen <freku045@student.liu.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-pull.sh')
-rwxr-xr-x | git-pull.sh | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/git-pull.sh b/git-pull.sh index 3a139849f..0991d5f14 100755 --- a/git-pull.sh +++ b/git-pull.sh @@ -4,19 +4,10 @@ # # Fetch one or more remote refs and merge it/them into the current HEAD. +USAGE='[-n | --no-summary] [--no-commit] [-s strategy]... [<fetch-options>] <repo> <head>...' +LONG_USAGE='Fetch one or more remote refs and merge it/them into the current HEAD.' . git-sh-setup -usage () { - echo >&2 "usage: $0"' [-n] [--no-commit] [--no-summary] [--help] - [-s strategy]... - [<fetch-options>] - <repo> <head>... - -Fetch one or more remote refs and merge it/them into the current HEAD. -' - exit 1 -} - strategy_args= no_summary= no_commit= while case "$#,$1" in 0) break ;; *,-*) ;; *) break ;; esac do |