Skip to content

Latest commit

 

History

History
66 lines (42 loc) · 1.64 KB

CONTRIBUTING.rst

File metadata and controls

66 lines (42 loc) · 1.64 KB

Contributing

  1. Fork and git clone the project;
  2. Create virtual environment:

    make venv

  3. Activate virtual environment:

    source venv/bin/activate

  4. Install project in development mode:

    make develop

  5. Create a new git branch about what the changes would be made:

    git checkout --branch changelog-generation-bugfix

If you're fixing an issue, start the branch name with it number:

git checkout --branch 42-docs-typo
  1. Write the code and tests and ensure that everything is alright:

    make check
  2. Generate changelog fragment:

    make fragment name=42-typo type=doc

    If there is no issue about what you're working on, set the name as short mnemonic name:

    make fragment name=readme-typo type=doc

    If your change is a single commit change, then use fragment-amend instead:

    make fragment-amend name=readme-typo type=doc

    This will squash changelog fragment with your last (and single one) commit.

  3. Push the changes and create a new Pull Request.
  4. ...
  5. PROFIT! And thank you!