Versions Compared

Key

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

...

  1. If you’re working on a feature RANGER-XXX, you may create a local branch with

    1. git checkout -b RANGER-XXX --track upstream/master
  2. Do local changes and commit locally with

    1. git commit -m "RANGER-XXX: <Commit Message>" 
  3. Push your commits to your fork with

    1. git push origin HEAD:RANGER-XXX 
    2. Use git status  to check whether your branch is tracking an upstream one.
    3. This creates a new remote branch named RANGER-XXX on your fork and an option to create a PR is now visible.

    4. The same command can be used to push subsequent commits, the PR automatically reflects the change if one exists.

  4. Add reviewers(existing committers) and add yourself as an assignee.

  5. Provide a description of the changes and testing performed (use in the below template)

    Code Block
    languageyml
    themeConfluence
    ## What changes were proposed in this pull request? Description of your changes ## How was this patch tested? Mention testing performed

    template.

  6. To checkout PRs locally for review:

...