Skip to content

Latest commit

 

History

History
61 lines (40 loc) · 846 Bytes

CONTRIBUTING.md

File metadata and controls

61 lines (40 loc) · 846 Bytes

Getting Started

Installation and Contribution

  1. Clone the Repo
git clone git@github.com:bhavesh-chaudhari/TF2022.git

If you have forked the project then do this instead

git clone git@github.com:<your_username>/TF2022.git
  1. Install NPM packages
npm install
  1. Create your Feature Branch
git checkout -b <branch-name> # Create a new branch and check it out
  1. Add your changes once the work is done
git add .
  1. See your staged changes
git status
  1. Commit your Changes
git commit -m <write commit message inside quotes>
  1. Push to the Branch
git push -u origin <branch-name>
  1. Open a Pull Request

Important ❗

Before working on any existing branch always run this command to keep things updated.

git pull origin main