GMT20220720-041625_Recording_1920x1120.mp4
Branches
https://docs.github.com/en/get-started/quickstart/github-flow
Flow diagram

Version Control & Workflow
Branches & Flow
- Checkout and pull the main branch
git checkout main
git pull origin main
- Create a new branch (NOTE: Make sure to always make the branch from main by pulling the latest changes)
git branch day-#
git checkout day-#
- After add and making a commit
git push origin day-#
- Make a pull request to the main branch
- Assign to your lead
- Ask your lead to merge the pull request
- In case you want to bring the new changes from the main branch to the current branch