Versions Compared

Key

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

...

  1. Check out the edx-platform "gh-pages" branch (not master)  (aka: select this branch and sync).
    Note: If you're using the command line, after you check out gh-pages, you may have to run "git pull" to update the branch.
  2. In Finder, navigate to edx-platform/index.html and open index.html in Sublime or your preferred editing tool.
  3. Search the file for the last release date and update it to the current release date. (The date only appears once in the file.)
  4. Save and then commit and sync (or "push", if you're using the command line) your branch. (You don't need to make a pull request.)
  5. Check the docs.edx.org page to make sure that the date gets updated within a few minutes.

Original instructions: 

Detailed GitHub instructions for Documentation Team

  1. Clone the edx_platform gh-pages branch locally:
    git clone -b gh-pages git@github.com:edx/edx-platform.git
  2. CD to directory where you cloned gh-pages
  3. Checkout gh-pages:
     git checkout gh-pages
  4. Check out the new branch branch:
  5. git checkout -b release-notes/date
  6. Make changes to the release notes files and index.html as needed.
  7. Check that the file changes you made are properly reflected by running:
    git status 
  8. Add new or changed files to Git:
    git add filename
  9. Commit the files to the new branch:
    git commit -m 'release notes update for date'
  10. Push the changes:
    git push --set-upstream origin release-notes/date
  11. Go to the edx_platform project in GitHub, select the gh-pages branch, and create a pull request from the release-notes/date branch you created.
  12. A second member of the Documentation team will review and merge changes to the gh-pages branch.