Only push to the origin repo if we wanted to fetch, too.
diff --git a/git-flow-feature b/git-flow-feature
index ef4d526..fe10382 100644
--- a/git-flow-feature
+++ b/git-flow-feature
@@ -294,7 +294,9 @@
 	gitflow_require_clean_working_tree
 
 	# delete branch
-	git push $ORIGIN :refs/heads/$BRANCH
+	if [ $FLAGS_fetch -eq 1 ]; then
+		git push $ORIGIN :refs/heads/$BRANCH
+	fi
 	git branch -d $BRANCH
 
 	echo