From: David Thompson <davet@gnu.org>
Date: Tue, 26 Aug 2014 14:43:34 +0000 (-0400)
Subject: Add more notes about git workflow to README.
X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=b60c5e5fe98d263c5ca2616529fefbb63b4d5811;p=libreplanet-static.git

Add more notes about git workflow to README.
---

diff --git a/2015/README.md b/2015/README.md
index ec1728d9..5573ad51 100644
--- a/2015/README.md
+++ b/2015/README.md
@@ -116,6 +116,19 @@ servers.  When you push to the `master` branch, the site is deployed
 to <http://wiki-dev0.libreplanet.org>.  When you push to the
 `stable` branch, the site is deployed to <http://libreplanet.org>.
 
+When you're happy with the state of the master branch and want to
+deploy live, do the following:
+
+```
+git checkout stable
+git merge master
+git push
+```
+
+This merges the master branch with the stable branch, updates the
+remote repository on the git server, and triggers a deploy to
+<http://libreplanet.org>.
+
 CSS and JavaScript
 ------------------