Arnav:
Git commands
git fetch origin
- allows you to detect updates on the github repo
- on success, it will tell you the newly created branch, or if there is any recent commit to the branch.
- after this, if there is new code. run git pull
git pull
- allows you to retrieve updated code from the repo
git branch
- allows you to see what branch you are on, as well as other existing branches
- You will see master and main. Master should be colored when you're on it.
- Ensure you're coding and pushing on Master
To upload to github
git add .
git commit -m"note of the update"
git push
Do Before npm run start
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass