🎯 What you'll practice: The core Git workflow — init, add, commit, push, branch.
1-B 2-B 3-B 4-B | 5 = commit 6 = Pull 7 = git init; git add .; git commit -m "Initial commit"; git push -u origin main (after remote add + branch -M main) 8 = A feature branch isolates in-progress work so main always stays in a stable, deployable state, and changes can be reviewed via a Pull Request before merging 9 = It links the local repository to a remote GitHub repository named "origin", so future push/pull commands know where to send/receive commits | 10 = Both platforms watch the connected GitHub repo's main branch; when a push updates it, they automatically pull the new commit, rebuild, and redeploy — meaning a team can ship a fix or feature the moment it merges, without any manual upload step, keeping deploys frequent and low-friction.