Backend Development
Step 2 / 2075 min

Git & GitHub

Backend Foundations

Explanation

Track backend work with commits, branches, and pull requests so APIs stay reviewable and recoverable.

Code example

bash
git checkout -b feat/skills-api
git add .
git commit -m "Add skills REST endpoints"
git push -u origin feat/skills-api

Helpful resources

Exercise

Create a backend repo, commit an Express starter, and open a pull request with a clear description.