Explicitly avoid setting up tracking between develop and master.
diff --git a/git-flow-init b/git-flow-init
index 46e95af..e34cb14 100644
--- a/git-flow-init
+++ b/git-flow-init
@@ -163,7 +163,7 @@
# default production branch and develop was "created". We should create
# the develop branch now in that case (we base it on master, of course)
if ! git_local_branch_exists "$develop_branch"; then
- git branch "$develop_branch" "$master_branch"
+ git branch --no-track "$develop_branch" "$master_branch"
created_gitflow_branch=1
fi