From 12c2a9c307058cc38f965bd4a412af7c16192090 Mon Sep 17 00:00:00 2001 From: memleak Date: Fri, 1 Jun 2012 13:45:31 +0300 Subject: [PATCH] fixes pull existing feature from remote. --- git-flow-feature | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-flow-feature b/git-flow-feature index e97d67825..eea2b6a78 100644 --- a/git-flow-feature +++ b/git-flow-feature @@ -507,7 +507,7 @@ cmd_pull() { exit 1 fi else - it pull -q "$REMOTE" "$BRANCH" || die "Failed to pull from remote '$REMOTE'." + git pull -q "$REMOTE" "$BRANCH" || die "Failed to pull from remote '$REMOTE'." fi echo "Pulled $REMOTE's changes into $BRANCH."