From a223c3a63326f4803f7679748933c0740fcf2dc8 Mon Sep 17 00:00:00 2001 From: Kostas Date: Thu, 31 May 2012 12:28:37 +0100 Subject: [PATCH] fixed small bug in line 510, 'it' instead of 'git' --- 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."