Full Stack Web Development
Step 4 / 2190 min

Git & GitHub

Web Foundations

Explanation

Git tracks changes locally; GitHub hosts repositories for collaboration, pull requests, and portfolio proof.

Code example

bash
git 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 main

Helpful resources

Exercise

Create a GitHub repo for your profile page, commit regularly, and push a clean main branch.