info

Show a detailed inventory of your repositories.

Usagegit-wrangler info [options]

Quick start

git-wrangler info

What it does

info shows each repository’s branch, working state, remote addresses, commit counts, recent commits, main contributors, largest files, and license status.

It refreshes origin first so ahead and behind counts are current. 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 Inspect exactly one repository.
--no-fetch Off Skip refreshing origin; remote information may be old.
--json Off Return a smaller machine-readable report.
--guided Off Choose options through prompts; cannot be used with JSON.

More examples

# Inspect one repository
git-wrangler info --repo ./api

# Work offline
git-wrangler info --no-fetch

# Save a machine-readable report
git-wrangler info --json > repositories.json
  • Use status for a faster everyday overview.
  • Use activity for an activity calendar.
  • Use log for commit history.