Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. git clone -b website https://git-wip-us.apache.org/repos/asf/zookeeper.git
  2. update the appropriate pages, typically a markdown file e.g. credits.md, etc...
  3. jekyll build
  4. cp -rp _released_docs _site/doc # these are the static release docs, they are not generated
  5. # at thispoint verify that the site is working properly - open _site/index.html
    # once you are happy move on to the next step...
  6. git commit -m "<appropriate commit message>"
  7. git push origin website
  8. git checkout asf-site
  9. rm -fr content
  10. mv _site content
  11. git add content
  12. # verify that content/index.html and other generated files are proper, open in a browser
    "git status" should show modified files for the markdown that you changed
  13. git commit -m "<appropriate commit message>"
  14. git push origin asf-site