You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@fluo.apache.org by GitBox <gi...@apache.org> on 2017/12/21 13:43:31 UTC

[GitHub] keith-turner commented on issue #114: Add Alan Camillo as a contributor

keith-turner commented on issue #114: Add Alan Camillo as a contributor
URL: https://github.com/apache/fluo-website/pull/114#issuecomment-353353832
 
 
   @kpm1985 if you are interested in how to build the web site, here is some info. The raw html for the web site is stored in the asf-site branch and has to be generated using jekyll and pushed.  @ctubbsii wrote a script to automate the generation.  Below are the commands I just ran to update the website.
   
   ```bash
    # ensure local asf-site branch is up to date
    git checkout asf-site 
    git pull upstream asf-site
   
    # switch to gh-pages branch, update it, and build new site 
    git checkout gh-pages
    git pull upstream gh-pages 
    ./_scripts/git-hooks/post-commit 
   
    # switch to asf-site, look at the commit created by post-commit script, and push it if ok
    git checkout asf-site 
    git log -p
    git push upstream asf-site 
   ```
   
   For me upstream is :
   
   ```java
   $ git remote -v | grep upstream
   upstream	https://gitbox.apache.org/repos/asf/fluo-website/ (fetch)
   upstream	https://gitbox.apache.org/repos/asf/fluo-website/ (push)
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services