publishing instructions
diff --git a/README.md b/README.md
index be47506..1e0d64d 100644
--- a/README.md
+++ b/README.md
@@ -23,4 +23,20 @@
 vim _posts/2017-01-01-NewYearsResolutions.markdown
 
 # any edits you make will immediately be picked up and updated in your browser session
-```
\ No newline at end of file
+```
+
+## How to publish
+
+Once you have written and previewed your post, you will need to commit and push any changes you made to both your source `.md` files and compiled `.html` files.
+
+```bash
+jekyll build
+git add -u
+
+# if needed, add new content
+git add content/* 
+
+git commit -m 'my new post'
+git push upstream
+```
+