Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.11 KB

contributing.md

File metadata and controls

49 lines (32 loc) · 1.11 KB

How to contribute?

Thank you for considering contributing to this project! The following guidelines will help you make a meaningful and successful contribution.

  1. Fork the repository. image

  2. Clone it locally

git clone https://github.com/[your-github-username]/testcase-generator.git
  1. Install the necessary dependencies by running
npm ci or yarn install
  1. Run project locally by using
npm run dev or yarn run dev
  1. Make your changes and test them locally.
  2. Commit your changes with clear and concise commit messages.

You can check how to write professional commits

  1. Set up remote upstream
git remote add upstream https://github.com/ank1traj/testcase-generator
  1. Create a new Branch
git branch -M [your-branch-name]
  1. Push your changes to your forked repository.
git push origin [your-branch-name]
  1. Create a pull request, wait for review & merge.