Versions Compared

Key

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

...

Code Block
# Change into the source directory
$ cd incubator-sdap-website/source
 
# Make sure you are working with the `asa-site` branch
$ git branchcheckout -b asf-branchsite
 
# Make changes and serve the Website locally, it can be seen at http://localhost:4000
$ jekyll serve --drafts
 
# Copy changes to deploy directory and change back into the parent directory
$ cp -r _site/* ../ && cd ../
 
# Review changes
$ git status
 
# Commit and push your changes, ensure your commit message is titled appropriately based upon the JIRA issue you've created.

...