git
git
1. Git Configuration
3. Basic Workflow
git commit -am "Commit message" # Add & commit tracked files
in one step
6. Undoing Changes
git reset --soft HEAD~1 # Undo last commit but keep changes
staged
7. Stashing Changes
8. Tagging
9. Viewing Differences
Command Effect
git
Switches branches or restores files
checkout
14. Git Log Shortcuts