Skip to content
This repository has been archived by the owner on Jul 30, 2018. It is now read-only.

Latest commit

 

History

History
21 lines (16 loc) · 782 Bytes

CONTRIBUTING.md

File metadata and controls

21 lines (16 loc) · 782 Bytes

Contributing

You can contribute to this project by following the steps bellow:

Git flow

  1. Fork this repository: git clone git@github.com:arrecadar/api.git.
  2. Create your branch feature: git checkout -b add/feature.
  3. Make your changes and commit: git add . && git commit.
  4. Open a pull request.

Commit styles

We the follwing pattern to commit messages:

  • The subject of commit must have less than 50 characters.
  • The format of subject must be scope: type description:
    • scope is where the commit affects.
    • type is what your commit does.
      • type is strict and has some types availables: fix, refactor, chore, add, update and remove.
    • description is your description.
  • The body message needs have less than 80 characters.