Explanation
Track backend work with commits, branches, and pull requests so APIs stay reviewable and recoverable.
Code example
bashgit checkout -b feat/skills-api
git add .
git commit -m "Add skills REST endpoints"
git push -u origin feat/skills-apiHelpful resources
Exercise
Create a backend repo, commit an Express starter, and open a pull request with a clear description.
