Skip to content
This repository has been archived by the owner on Nov 14, 2020. It is now read-only.

Latest commit

 

History

History
77 lines (55 loc) · 3.49 KB

CONTRIBUTING.md

File metadata and controls

77 lines (55 loc) · 3.49 KB

How to Contribute

We're excited you're interested in contributing to Marquez! We'd love your help, and there are plenty of ways to contribute:

We feel that a welcoming community is important and we ask that you follow the Contributor Covenant Code of Conduct in all interactions with the community.

Submitting a Pull Request

  1. Fork and clone the repository
  2. Create a new branch: git checkout -b feature/my-cool-new-feature
  3. Make change on your cool new branch
  4. Write a test for your change
  5. Make sure to sign you work
  6. Push change to your fork and submit a pull request
  7. Add the "review" label to your pull request
  8. Work with project maintainers to get your change reviewed and merged into the master branch
  9. Delete your branch

To ensure your pull request is accepted, follow these guidelines:

Note: A pull request should generally contain only one commit (use git commit --amend and git --force push or squash existing commits into one).

Branching

  • Use a group at the beginning of your branch names

    wip      Work on a feature is still in progress
    feature  Add or expand a feature
    bug      Fix a bug
    

    For example:

    wip/my-cool-new-wip-feature
    feature/my-cool-new-feature
    feature/my-other-cool-new-feature
    bug/my-bug-fix
    bug/my-other-bug-fix
    
  • Choose short and descriptive branch names

  • Use dashes (-) to separate words in branch names

  • Use lowercase in branch names

Sign Your Work

The sign-off is a simple line at the end of the message for a commit. All commits needs to be signed. Your signature certifies that you wrote the patch or otherwise have the right to contribute the material (see Developer Certificate of Origin):

This is my commit message

Signed-off-by: Remedios Moscote <remedios.moscote@buendía.com>

Git has a -s command line option to append this automatically to your commit message:

$ git commit -s -m 'This is my commit message'

Resources