← All notes

Git

Git Commands Every Developer Needs

Essential Git commands for daily development, branching, and collaboration.

Git Commands Every Developer Needs

git status
git add .
git commit -m "message"
git push origin main
git pull
git checkout -b feature/name
git merge main

Master the basics before advanced workflows like rebase and cherry-pick.