- Write code and commit on your own branch only. (No commits on master branch). Feel free to make as many branches as you like.
- Avoid using (Shift+Delete). Recycle Bin is a friend in need.
- Thoroughly test before opening a Pull Request.
- Any other important guideline for the team should be highlighted here in Readme.md in bold.
-
Clone the repo on your computer.
git clone https://github.com/Tejas021/Vcet-Hackathon-2022.git
-
Setup Environment and dependencies.
Install Node JS from nodejs.org
-
To run React App
Navigate to root Directory:
cd Vcet-Hackathon-2022
Install Dependencies:
npm install
Start React App:
npm run dev
-
On your master branch
git pull https://github.com/Tejas021/Vcet-Hackathon-2022.git
-
Checkout to Your own branch.
git checkout -b <branch_name>
-
Commit the code changes onto your branch.
-
Make sure you are up to date with the
master
branch.git fetch origin master
git merge origin/master
Complete the merge. Resolve merge conflicts (if any) -
git push origin br_name
-
Goto Github and create a Pull Request.
-
Wait for Pull Request to get approved.