Edited wiki page ReleaseProcess through web user interface.
diff --git a/ReleaseProcess.wiki b/ReleaseProcess.wiki
index d212688..9e266b5 100644
--- a/ReleaseProcess.wiki
+++ b/ReleaseProcess.wiki
@@ -49,7 +49,11 @@
 # Create branch
 git checkout -b $BRANCH
 # Push branch for others to see
-git push origin $BRANCH
-# Set local branch to follow remote branch (for future push/pull)
-git branch -u origin/$BRANCH
+git push -u origin $BRANCH
+
+#### In other local clones (optional) ####
+# Get new branch
+git fetch
+# Create a local branch that pulls/pushes to origin/$VERSION
+git branch $VERSION origin/$VERSION
 }}}
\ No newline at end of file