Versions Compared

Key

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

...

Ensure you have a SSH key setup locally and in GitHub

  • Create SSH Key
    • mkdir -p ~/.ssh
    • ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts
    • ssh-keygen -t rsa -C "user.email"<to-do>
  • Setup on GitHub
    • open the public key with this command $ cat ~/.ssh/id_rsa.pub and copy it.
    • Add the id_rsa.pub key to SSH keys list on your GitHub profile.<to-do>

Prepare and distribute test plan

...

Push Release Branch to develop and Maintenance

The release branch has changes made since code freeze. It also contains the update to the version numbers for future development.

...

Ensure that your commit history matches the release branch's commit history, except for the two additional commits. 

  1. Changing from SNAPSHOT version to release version. Something like [maven-release-plugin] prepare release $REPO-$CURR
  2. Changing from release version to next development version. Something like [maven-release-plugin] prepare for next development iteration

If this appears correct, you can push your release branch on to the maintenance branch.

...