Edited wiki page ReleaseProcess through web user interface.
diff --git a/ReleaseProcess.wiki b/ReleaseProcess.wiki
index 56cb846..d212688 100644
--- a/ReleaseProcess.wiki
+++ b/ReleaseProcess.wiki
@@ -35,4 +35,21 @@
 
 # Update "External links" to point to new documentation.
 # Update main page to point to new release.
+}}}
+
+
+To create release branches:
+{{{
+BRANCH=v4.0.x
+
+# Make local code is up-to-date
+git checkout master
+git pull
+
+# 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
 }}}
\ No newline at end of file