Click here to return to top level Code Management page.


The central repository contains the updated baseline version of Jetstream. Have a look at the ‘Merge Notes’ page on the wiki to see what’s changed:

Please follow the instructions below to update your master version of Jetstream.
  1. Clean up your testing branch and commit any pending changes
  2. Switch over to your master branch:
    • git checkout master
  3. Merge your testing branch back into your master branch
    • git merge <name_of_your_testing_branch>
  4. Pull the latest and greatest from the central repository:
    • git pull central master
  5. Delete the testing branch:
    • git branch -D <name_of_your_testing_branch>
  6. Create a new branch and start working with your updated version of Jestream:
    • git branch <new_working_branch>
    • git checkout <new_working_branch>