log

Browse combined commit history across your repositories.

Usagegit-wrangler log [options]

Quick start

git-wrangler log

What it does

log combines commit history from the repositories in your workspace, sorts it newest first, and shows up to 50 commits by default. It reads local history and does not contact remotes.

Conventional Commit subjects are grouped by type and scope. Other commit messages remain visible as other.

Options

Option Default What it does
--repo <path> Whole workspace Show history for exactly one repository.
--limit <number> 50 Limit combined results; use 0 for no limit.
--since YYYY-MM-DD Include commits on or after this author date.
--until YYYY-MM-DD Include commits on or before this author date.
--type <type> All types Include a Conventional Commit type or other. Repeatable.
--scope <scope> All scopes Include an exact Conventional Commit scope. Repeatable.
--summary Off Show counts and simple type/scope charts before the history.
--guided Off Choose options through prompts.

More examples

# Show features and fixes from this year
git-wrangler log --since 2026-01-01 --type feat --type fix

# Filter one repository by scope
git-wrangler log --repo ./api --scope auth

# Include a summary and show more commits
git-wrangler log --summary --limit 100
  • Use activity for a calendar view.
  • Use review to see committed work that has not been pushed.