Versions Compared

Key

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

...

  1. Go to you fork, make sure it doesn't have any uncommitted changes.
  2. Fetch pull request to a local branch:
    • git fetch upstream pull/<xxx>/head:pr-<xxx>

  3. Merge from the new branch to master:
    • git merge --squash pr-<xxx>
  4. Commit to local master. Do not forget to specify author and provide a comment that will close the pull request (see https://help.github.com/articles/closing-issues-via-commit-messages/):
    • git commit --author=“John Doe <jdoe@apache.org>" -m “ignite-999 - Cool feature implemented. Closes #77#<xxx>.”
  5. Push to 'apache' remote:
    • git push apache master

...