A compact reference for high-frequency Git commands.
Common Commands
1 | git status |
Branch Operations
1 | git checkout -b feature/post |
Summary
- Check
git statusbefore committing. - Prefer
git pull --rebaseto keep history clean.
A compact reference for high-frequency Git commands.
1 | git status |
1 | git checkout -b feature/post |
git status before committing.git pull --rebase to keep history clean.