Skip to content

Latest commit

 

History

History
79 lines (48 loc) · 2.04 KB

Contribution.md

File metadata and controls

79 lines (48 loc) · 2.04 KB

Contributing to Review App

Thank you for your interest in contributing OTP-VERIFICATION App! We welcome contributions from the community to help improve and enhance the project. Please take a moment to read through the following guidelines to get started.

Table of Contents

Getting Started

Before you start contributing , make sure you have:

  • A GitHub account.
  • Git installed on your local machine.
  • Yarn installed on your local machine.

Contributing Guidelines

We follow these guidelines for contributing:

  1. Fork the repository to your GitHub account.

  2. Clone your forked repository to your local machine:

    git clone https://github.com/your User Name/OTP-Verification.git
  3. Create a new branch for your contribution:

    git checkout -b feature-name
  4. Make your changes and ensure your code follows our coding standards and practices.

  5. Test your changes locally to ensure they work as expected.

  6. After Making change/Contribution/Modifying stage the changes to a file:

git add filename

or

to stage changes in all directories

git add .
  1. Commit your changes with clear and concise commit messages:

    git commit -m "Add feature: your feature description"
  2. Push your changes to your GitHub fork:

    git push origin feature-name
  3. Create a pull request (PR) to the main repository's main branch.

Setting Up the Development Environment

Check README.md

Submitting a Pull Request (PR)

When you're ready to submit your changes, create a pull request (PR) following our guidelines. Be sure to provide a clear description of your changes in the PR, and one of our maintainers will review it.

We appreciate your contributions and look forward to collaborating with you!