Skip to content

Latest commit

 

History

History
48 lines (27 loc) · 1018 Bytes

CONTRIBUTING.md

File metadata and controls

48 lines (27 loc) · 1018 Bytes

Contributing to Metrics Catalog

Create an Issue

Create an issue.

Fork the Repo

Fork the repo.

$ git clone https://github.com/<username>/metrics-catalog.git
$ cd metrics-catalog
$ git remote add upstream https://github.com/monitoringsucks/metrics-catalog.git

Create a Local Feature Branch

Create a feature branch and start adding updates.


$ git checkout -b my-feature-branch

Commit

Write a good commit message. A commit message should describe what changed and why.

  1. If this commit fixes/closes an issue prefix the commit header message likes this: "Fixes #ISSUENUMBER".
  2. Blank line.
  3. More details with regards to the commit.

Push


$ git push origin my-feature-branch

Create a Pull Request

Select your feature branch from https://github.com/monitoringsucks/ and click the 'Pull Request' button. Fill out the form.

Thank you.