/3 min read
Git Branches: List, Create, Switch to, Merge, Push, & Delete
Git Daily Workflow
1
Pull Latest
git pull origin main — start with up-to-date code.
2
Create a Branch
git checkout -b feature/X — never commit directly to main.
3
Commit Often
Small, focused commits with clear messages.
4
Push & PR
git push, then open a pull request for review.
Build Programming Foundations at Noble Desktop
Noble Desktop's Full-Stack Web Development Certificate teaches Git alongside the modern web stack — a must for any developer.
Git lets you branch out from the original code base. This lets you more easily work with other developers, and gives you a lot of flexibility in your workflow.
