Git Command Generator — illustrative example INPUT Generate read-only Git commands to inspect uncommitted changes before preparing a commit. RESULT git status --short git diff git diff --staged Review: status includes untracked paths; git diff shows unstaged tracked-file changes; git diff --staged shows staged changes. Untracked file contents require separate inspection. None of these commands stages or commits files. REVIEW A Git command plan should start from the repository state and desired outcome. Explain destructive commands and prefer reviewable steps where possible. This is a teaching example, not a live execution record.