Versions Compared

Key

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

  Geb and Spock developer housekeeping responsibilities with regard to creating local QA tests on your local branch previous to code review, before global merge into Scheduledb.

1. Lets be sure we are working with the latest version of Scheduledb
  # git checkout -f scheduledb
     or
  # git pull
2. Create your local branch
  # git checkout -b yourlocalbranchname
3. Create your Geb and Spock tests
4. Lets be sure we are still working with the latest version of Scheduledb
  # git pull
5. Merge scheduledb to your local branch
  # git merge scheduledb
6. Create your remote branch for Peer Code Review
  # git push origin yourlocalbranchname
7. Code Review
8. Merge as long as approved (all developer branches must be up to date)
#