Explanation
Git tracks changes locally; GitHub hosts repositories for collaboration, pull requests, and portfolio proof.
Code example
bashgit init
git add .
git commit -m "Initial commit"
git branch -M main
git remote add origin https://github.com/you/fullstack-starter.git
git push -u origin mainHelpful resources
Exercise
Create a GitHub repo for your profile page, commit regularly, and push a clean main branch.
