Skip to content

Latest commit

 

History

History
71 lines (41 loc) · 2.44 KB

CONTRIBUTING.md

File metadata and controls

71 lines (41 loc) · 2.44 KB

Contributing guide

Thank you for investing your time in contributing to this project! Please follow this steps 😃

1. Issues

Check if an issue exists

If you spot a problem, please search if an issue already exists. If nobody is assigned to this issue, comment the issue to get assigned from maintainers.

Create a new issue

If it doesn't, you can open a new issue using the new issue form specifying if it's about a bug, a feature, documentation or anything else.

Open in Gitpod

2. Fork this repository

Once assigned to an issue, you can fork this repo.

Show me how to fork a repository Click the **Fork** button on the top right of this repository page

screenshot of Fork button

It will create a copy of this repository into your account.

Select the owner for the forked repository GitHub example

Choose to copy only the master branch and click Create fork

3. Clone the fork

Go to your fork repository and clone :

  1. git clone [your repo url goes here]
  2. change directory to your cloned repo cd [your repo name]

4. Create a new branch and code

Don't code on the master branch

Run git checkout -b [your branch name goes here] to create your new branch

Make your edits with you favorite IDE

5. Save and push

Run git add .

Run git commit -m 'Commit message goes here' ⚠️ please commit with an descriptive message for the convenience of reviewer

Finally, run git push origin [your branch name goes here]

6. Create a pull request (PR)

  • Go to your repository in browser and click on compare and pull requests.
  • Then add a suitable and crisp title and description to your pull request that explains your contribution.
  • Follow the PR template without compromising anything.
  • Mention anyone of the reviewers (jsvigneshkanna)
  • Voila! Your Pull Request has been submitted and will be reviewed by the moderators and merged.🥳

7. Star this repo

Please star this repo to make this project cooler

Happy contributing !