Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 1.97 KB

CONTRIBUTING.md

File metadata and controls

48 lines (31 loc) · 1.97 KB

Welcome to Rehash contributing guide

Thank you for investing your time in contributing to our project! ⭐

Read our Code of Conduct to keep our community approachable and respectable.

In this guide you will get an overview of the contribution workflow from opening an issue, creating a PR, reviewing, and merging the PR.

New contributor guide

To get an overview of the project, read the README. Here are some resources to help you get started with open source contributions:

Getting Started 🥂

Issues

Create a new issue

If you spot a problem with the docs, search if an issue already exists. If a related issue doesn't exist, you can open a new issue using a relevant issue form.

Solve an issue

Scan through our existing issues to find one that interests you. You can narrow down the search using labels as filters.

Make Changes

  1. star this repository ⭐, and fork it

    git clone https://github.com/<your_account>/rehash.git
    
  2. Create a new branch and switch to it.

    git checkout -b <new_branch_name>
    
  3. Make changes to the code on that branch and commit.

  4. Push the commit to GitHub.

    git push origin <new_branch_name>
    
  5. Make a pull request on GitHub.