review
See committed changes that have not been pushed yet.
Usage
git-wrangler review [options]Quick start
git-wrangler review
What it does
review lists files changed by local commits that are not present on any known remote branch. It groups complete directory deletions so large removals stay readable.
This command shows committed but unpushed work. It does not show uncommitted changes; use status for those.
review refreshes origin first. Use --no-fetch when offline or when you intentionally want to use existing local information.
Options
| Option | Default | What it does |
|---|---|---|
--repo <path> |
Whole workspace | Review exactly one repository. |
--no-fetch |
Off | Skip refreshing origin; results may be out of date. |
--json |
Off | Return machine-readable review results. |
--guided |
Off | Choose options through prompts; cannot be used with JSON. |
More examples
# Review one repository
git-wrangler review --repo ./api
# Work offline
git-wrangler review --no-fetch
# Save machine-readable output
git-wrangler review --json > review.json