You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datafu.apache.org by mh...@apache.org on 2014/04/25 23:53:07 UTC

git commit: Update website README with details on how to update the website

Repository: incubator-datafu
Updated Branches:
  refs/heads/master 00a0442d9 -> 1cbe8c299


Update website README with details on how to update the website


Project: http://git-wip-us.apache.org/repos/asf/incubator-datafu/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-datafu/commit/1cbe8c29
Tree: http://git-wip-us.apache.org/repos/asf/incubator-datafu/tree/1cbe8c29
Diff: http://git-wip-us.apache.org/repos/asf/incubator-datafu/diff/1cbe8c29

Branch: refs/heads/master
Commit: 1cbe8c2997a19af5a780007908a1857de3a78eed
Parents: 00a0442
Author: Matt Hayes <mh...@linkedin.com>
Authored: Fri Apr 25 14:52:47 2014 -0700
Committer: Matt Hayes <mh...@linkedin.com>
Committed: Fri Apr 25 14:52:47 2014 -0700

----------------------------------------------------------------------
 site/README.md | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-datafu/blob/1cbe8c29/site/README.md
----------------------------------------------------------------------
diff --git a/site/README.md b/site/README.md
index 49417f2..eb0a3fe 100644
--- a/site/README.md
+++ b/site/README.md
@@ -29,3 +29,29 @@ The static content can be built with:
     bundle exec build
 
 This will produces the content in the `/build` directory.
+
+## Check out the website source
+
+The static website content is located in another repo:
+
+    svn co https://svn.apache.org/repos/asf/incubator/datafu apache-datafu-website
+
+## Commit the changes
+
+In the `apache-datafu-website` folder, delete the old content, which we will be replacing
+with new content:
+
+    cd apache-datafu-website
+    rm -rf site
+
+Now copy the built content to the `apache-datafu-website` folder, replacing the old `site` folder:
+
+    cp -r ~/Projects/incubator-datafu/site/build site
+
+Check what has changed:
+
+    svn status
+
+If you have added or removed files, you may need to run `svn add` or `svn rm`.
+
+Once you are satisfied with the changes you can commit.
\ No newline at end of file