Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 751 Bytes

CONTRIBUTION.md

File metadata and controls

34 lines (23 loc) · 751 Bytes

Contributing

If you have a new feature you would like to add or any fixes you want to contribute, be sure to follow this guideline.

Instructions

  1. Fork the repository.

  2. Make your changes

Create Pull Request

  1. Create a new branch: Example
git branch new-branch 
  1. Checkout new branch:
git checkout new-branch
  1. Add, commit and push your changes to the new branch
git add .
git commit -m "changes"
git push origin new-branch
  1. Go to your forked repository and press the “New pull request” button.

  2. Send a pull-request in dev branch and ensure the pull request follows the template.

  3. Once the pull request is reviewed and approved, it will be merged.