diff options
author | Junio C Hamano <junkio@cox.net> | 2005-10-03 15:45:44 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-03 15:45:44 -0700 |
commit | 619e5a0ed4a53653085961b7aefe1f93ed879949 (patch) | |
tree | b9f5addb7ac360a5ea93d6ec19d232abe0afc1f9 /git-pull.sh | |
parent | df8baa42fe4eeb5a021ac262caf601f44d2a5746 (diff) | |
download | git-619e5a0ed4a53653085961b7aefe1f93ed879949.tar.gz |
git-pull: do not barf on -a flag meant for git-fetch.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-pull.sh')
-rwxr-xr-x | git-pull.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git-pull.sh b/git-pull.sh index 0290e517c2..d4765188b4 100755 --- a/git-pull.sh +++ b/git-pull.sh @@ -32,7 +32,8 @@ do strategy_args="${strategy_args}-s $strategy " ;; -*) - usage + # Pass thru anything that is meant for fetch. + break ;; esac shift |