From 619e5a0ed4a53653085961b7aefe1f93ed879949 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Mon, 3 Oct 2005 15:45:44 -0700 Subject: [PATCH] git-pull: do not barf on -a flag meant for git-fetch. Signed-off-by: Junio C Hamano --- git-pull.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/git-pull.sh b/git-pull.sh index 0290e517..d4765188 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 -- 2.11.0