You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by ts...@apache.org on 2015/05/05 00:34:41 UTC

drill git commit: Updated README to describe the new git-based website publishing process

Repository: drill
Updated Branches:
  refs/heads/gh-pages 56894cd06 -> b6a98754f


Updated README to describe the new git-based website publishing process


Project: http://git-wip-us.apache.org/repos/asf/drill/repo
Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/b6a98754
Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/b6a98754
Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/b6a98754

Branch: refs/heads/gh-pages
Commit: b6a98754fd5b5c99d14c3539fd1dd2210e7c478f
Parents: 56894cd
Author: Tomer Shiran <ts...@gmail.com>
Authored: Mon May 4 15:34:33 2015 -0700
Committer: Tomer Shiran <ts...@gmail.com>
Committed: Mon May 4 15:34:33 2015 -0700

----------------------------------------------------------------------
 README.md | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/b6a98754/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index caa2d75..6e7cbdd 100644
--- a/README.md
+++ b/README.md
@@ -29,12 +29,16 @@ jekyll build --config _config.yml,_config-prod.yml
 Apache project websites use a system called svnpubsub for publishing. Basically, the static HTML needs to be pushed by one of the committers into the Apache SVN.
 
 ```bash
-svn co https://svn.apache.org/repos/asf/drill/site/trunk/content/drill ../_site-apache
-cp -R _site/* ../_site-apache/
-cd ../_site-apache
+git clone -b asf-site https://git-wip-us.apache.org/repos/asf/drill-site.git ../drill-site
+cp -R _site/* ../drill-site/
+cd ../drill-site
+git status
+git add *
+git commit -m "Website update"
+git push
 ```
 
-Then `svn add` and `svn rm` as needed, and commit the changes via `svn commit -m "Website update"`. Note that once changes are committed via `svn commit`, they will immediately be visible on the live site: <http://drill.apache.org>.
+The updates should then be live: <http://drill.apache.org>.
 
 # Documentation Guidelines