Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 687 Bytes

CONTRIBUTING.md

File metadata and controls

35 lines (24 loc) · 687 Bytes

Contributing Guidelines

Basics

To start your contribution, please follow the steps below:

  1. Create a fork of this repo.

  2. Git clone your fork to your machine:

git clone https://url.to.your/github/fork.git
  1. Use dev branch, commits targeting main will be ignored.
git checkout -b dev remotes/upstream/dev
  1. Make changes as you want.

  2. Commit your changes:

git commit -m "brief explanation of the changes"

Tip: You can setup code signing and add 0S to the commit command above to get a verified checkmark

  1. Push your changes:
git push
  1. Create pull request on GitHub.

No Direct Commits!