Refine go-live procedure in docs to "Contribute Documentation"
Project: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/commit/6be4ab58 Tree: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/tree/6be4ab58 Diff: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/diff/6be4ab58 Branch: refs/heads/develop Commit: 6be4ab5883611dd4dc4c30c68535167359a78d3e Parents: f9a1dc2 Author: Mars Hall <[email protected]> Authored: Wed Oct 18 19:50:27 2017 -0700 Committer: Mars Hall <[email protected]> Committed: Wed Oct 18 19:50:27 2017 -0700 ---------------------------------------------------------------------- .../community/contribute-documentation.html.md | 22 +++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-predictionio/blob/6be4ab58/docs/manual/source/community/contribute-documentation.html.md ---------------------------------------------------------------------- diff --git a/docs/manual/source/community/contribute-documentation.html.md b/docs/manual/source/community/contribute-documentation.html.md index ae55a29..aac0403 100644 --- a/docs/manual/source/community/contribute-documentation.html.md +++ b/docs/manual/source/community/contribute-documentation.html.md @@ -189,16 +189,28 @@ NOTE: Files must end with a `.erb` extension to be processed as ERB. ## Going Live -Pushing to the `livedoc` branch will update -http://predictionio.incubator.apache.org in about 5 minutes. +For Apache project committers, pushing to the `livedoc` branch of PredictionIO ASF git will update +http://predictionio.incubator.apache.org in about 10 minutes. -You can check the progress of each build on [Apache's -Jenkins](https://builds.apache.org/). +Make sure the **apache.org** remote is attached to your `incubator-predictionio` repo, and if not, add it: + +``` +$ git remote -v +$ git remote add apache https://git-wip-us.apache.org/repos/asf/incubator-predictionio.git +``` + +Then, push the `livedoc` branch. (It will be published and synced with the public GitHub mirror): ``` -$ git push origin livedoc +$ git push apache livedoc ``` +You can check the progress of each build on [Apache's +Jenkins](https://builds.apache.org/): + +* [build-site](https://builds.apache.org/job/PredictionIO-build-site/) +* [publish-site](https://builds.apache.org/job/PredictionIO-publish-site/) + ## Checking the Site WARNING: The check rake task is still in **beta** however it is extremely useful for catching accidental errors.
