Skip to content

Latest commit

 

History

History
43 lines (24 loc) · 1.13 KB

CONTRIBUTING.md

File metadata and controls

43 lines (24 loc) · 1.13 KB

Getting started

Fork this repository (Click the Fork button on the top right of this page, click your Profile Image)

Clone your fork down to your local machine

git clone https://github.com/{your username}/textextractor2.0.git

Create a branch

git checkout -b branch-name

Make your changes

  • Check out the issues here
  • Add new features
  • Improve OCR
  • Reduce loading time
  • Add your name to the CONTRIBUTORS.md file

Commit and push

git init

//It is used to initialize a git repo in your local machine

git add .

//It is used to stage the changed file. 

git commit -m 'Commit message'

//It is used to commit the file with a short message.

git push origin branch-name

//It is used to push the file into the local repository.

Create a new pull request from your forked repository (Click the New Pull Request button located at the top of your repo)

Wait for your PR review and merge approval

⭐ Star this repository if you had fun