You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

IDE subscription

Jetbrains provides an open source subscription via Apache or simple apply on their website at Jetbrains OpenSource.

Commit style guide

A commit or PR description is a public record of what change is being made and why.

Structure of the description

First Line
  1. A summary of what the changeset.
  2. A complete sentence, crafted as though it was an order.
    • an imperative sentence
    • Writing the rest of the description as an imperative is optional.
  3. Follow by an empty line.
Body

It consists of the following.

  1. A brief description of the problem solved.
  2. Why this is the best approach?.
  3. Shortcomings to the approach, if any (important!).
Additional info
  1. background information
    • bug/issue/jira numbers
    • benchmark/test results
    • links to design documents
    • code attributions
  2. Include enough context for
    • reviewers
    • future readers to understand the Changes.
  3. Add PR number, like Closes #1000.

https://github.com/apache/systemds/blob/master/CONTRIBUTING.md#commit-style

  • No labels