Git Cheat Sheet
Essential Git commands for daily work.
Everyday
| Item | Meaning |
|---|---|
| git status | See changed files |
| git add . | Stage changes |
| git commit -m "…" | Save a snapshot |
| git push | Publish commits |
| git pull | Fetch + merge remote |
Essential Git commands for daily work.
| Item | Meaning |
|---|---|
| git status | See changed files |
| git add . | Stage changes |
| git commit -m "…" | Save a snapshot |
| git push | Publish commits |
| git pull | Fetch + merge remote |