Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added an example commit message

...

  • Pull request description and commit comments
  • A link to the JIRA this is addressing.
  • The name and email of the original contributor (e.g., Contributed by John Doe <johndoe@apache.org>).The text "closes #PRNUMBER", where PRNUMBER is the number of the pull request, e.g. "10"

Following the last statement will close the GitHub pull request. It is important to close via the commit message, because we cannot close pull requests via the GitHub Web UI.

Example Commit message

Code Block
[REEF-33] Allow Tasks to initiate an Evaluator Heartbeat
  This adds the class HeartBeatTriggerManager which can be used by a Task to
  initiate an Evaluator Heartbeat. It is used by injecting it into the Task.
 
JIRA:
  [REEF-33] https://issues.apache.org/jira/browse/REEF-33
 
Pull Request:
  Closes #24

Method A

A-1. Create a branch on your local git repository

...

Please make sure that the commit message contains the information given in "Commit Message" above. The latest commit can be changed at any time with the command:

Code Block
languagebash
$ git commit --amend

...