Repository: incubator-quickstep-site Updated Branches: refs/heads/asf-site 90ba1fc17 -> fc54ced0e
publishing instructions Project: http://git-wip-us.apache.org/repos/asf/incubator-quickstep-site/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-quickstep-site/commit/fc54ced0 Tree: http://git-wip-us.apache.org/repos/asf/incubator-quickstep-site/tree/fc54ced0 Diff: http://git-wip-us.apache.org/repos/asf/incubator-quickstep-site/diff/fc54ced0 Branch: refs/heads/asf-site Commit: fc54ced0ef5dd9f126b48a1fb6f01ff5685045c9 Parents: 90ba1fc Author: Marc Spehlmann <marc.spehlm...@gmail.com> Authored: Tue Dec 13 11:57:45 2016 -0600 Committer: Marc Spehlmann <marc.spehlm...@gmail.com> Committed: Tue Dec 13 11:57:45 2016 -0600 ---------------------------------------------------------------------- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-quickstep-site/blob/fc54ced0/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index be47506..1e0d64d 100644 --- a/README.md +++ b/README.md @@ -23,4 +23,20 @@ cp _posts/2016-12-10-December-Progress.markdown _posts/2017-01-01-NewYearsResolu 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 +``` +