$ 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 feature branch and start adding updates.
$ git checkout -b my-feature-branch
Write a good commit message. A commit message should describe what changed and why.
- If this commit fixes/closes an issue prefix the commit header message likes this: "Fixes #ISSUENUMBER".
- Blank line.
- More details with regards to the commit.
$ git push origin my-feature-branch
Select your feature branch from https://github.com/monitoringsucks/ and click the 'Pull Request' button. Fill out the form.
Thank you.