Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.11 KB

CONTRIBUTION.md

File metadata and controls

30 lines (22 loc) · 1.11 KB

How Can I Contribute?

For Beginners:

Instructions-

  1. Fork this Repository (using the button at the top-right side)

  2. Clone your forked repository to your desktop/laptop (i.e. git clone <git-repo-https_or_ssh-link>)

  3. Create a new branch for your modifications (i.e. git branch <new-branch-name>) and check it out (git checkout <new-branch-name>)

  4. Add your files (git add .), commit the files (git commit -m "<my first commit>") and push (git push origin <new-user>)

  5. Create a pull request (You have raised your first PR!)

  6. Star this repository (optional)

Notes

Always create a new branch in accordance with the issue opened.

For example:

If you are working on a feature then your branch name should be: feature/issue_name

If you are working on a bug then your branch name should be: bug/branch_name

Always use keywords in commit messages to close the issue automaticaly after a pr is merged. Please check Keywords for reference.

If you are having any doubt, please use the comments section.