- 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
- Install NPM packages
npm install
- Create your Feature Branch
git checkout -b <branch-name> # Create a new branch and check it out
- Add your changes once the work is done
git add .
- See your staged changes
git status
- Commit your Changes
git commit -m <write commit message inside quotes>
- Push to the Branch
git push -u origin <branch-name>
- Open a Pull Request
Before working on any existing branch always run this command to keep things updated.
git pull origin main