Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added sample commit and changed the order of running tests and committing your changes

...

  1. Create a branch named KNOX-#### in your local repository and check it out

    Code Block
    # make sure to track local master branch
    git checkout master
    
    # creating and checking out the new branch locally
    git checkout -b KNOX-####


  2. Mark the status of the related JIRA as "In Progress" to let others know that you have started working on the JIRA.

  3. Run all the tests that are applicable and make sure that all unit tests pass
  4. Make changes to the code and commit them to the newly created branch.

    Run all the tests that are applicable and make sure that all unit tests pass

    Code Block
    git add [your-changes]
    git commit -m "KNOX-#### - Your meaningful commit message"


  5. Push your changes. Provide your Github user id and personal access token when asked for user name and password

    Code Block
    git push origin KNOX-####


...