- A commit is a saved snapshot of your changes
- See changes:
git status
- Stage changes:
git add .
- Commit:
git commit -m "Write a clear message"
- Keep it short
- Say what you did
- Examples:
- "Fix typo in README"
- "Add practice task"
- Read: How to Push
git statusgit add .git commit -m "Write a clear message"