Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1.13 KB

CONTRIBUTING.md

File metadata and controls

43 lines (29 loc) · 1.13 KB

Contributing to Hare

Thank you for your interest in contributing to Hare!

Process

This project uses PC3 (Pedantic Code Construction Contract) process for contributions.

Requesting changes

To request changes, log an issue and describe the problem you are facing.

Sending patches

  1. Fork the repository (once).

  2. Create a new branch. E.g.,

    git checkout -b save-the-prince
  3. Implement the change, adhering to the Coding Style Guidelines.

  4. Prepare a commit in accordance with Patch Requirements.

    Note: use git commit --signoff to commit your code changes. You can enable --signoff by default with

    git config --local --add format.signOff true
  5. Create a pull request.

See also