Skip to content

Latest commit

 

History

History
52 lines (41 loc) · 1.79 KB

CONTRIBUTING.md

File metadata and controls

52 lines (41 loc) · 1.79 KB

How to contribute

Contributions to LIME are welcome. Please follow these guidelines if you would like to contribute.

Getting started

Making changes

  • Create a topic branch for your commits.
  • Make commits of logical units.
  • Check for unnecessary whitespace with git diff --check before committing.
  • Make sure your commit messages are in the proper format:
Short (50 chars or less) summary of changes

More detailed explanatory text, if necessary.  Wrap it to
about 72 characters or so.  In some contexts, the first
line is treated as the subject of an email and the rest of
the text as the body.  The blank line separating the
summary from the body is critical (unless you omit the body
entirely); tools like rebase can get confused if you run
the two together. If the commit fixes a bug, the description
should contain the bug number, for example: "fixes #3".

Submitting changes

  • Rebase your work on LIME master branch to ease the merging and help us keeping a clean git history. If you made many small, trivial commits during the development, please squash them into logical units with an interactive rebasing.
  • Push your changes to the topic branch in your fork of the repository.
  • Submit a pull request to the LIME repository.
  • Wait for your changes to be reviewed.