Skip to main content

Fetch and checkout Gerrit changes by topic

Project description

gerrit-checkout

Fetch and checkout Gerrit topic changes across a single git repository or a repo-tool workspace.

The tool understands Gerrit parent relationships and can:

  • keep only top changes per repository when parent changes are already included by ancestry
  • discover related parent topics that are still needed for a complete local checkout
  • show a dry-run execution plan with lineage to master
  • build a complete dependency graph across recursively linked topics
  • safely preflight, store, and push a full affected rebase chain

Installation

pip install git+https://github.com/example/gerrit-checkout.git

For local development:

pip install -e . --force-reinstall --no-deps

Python dependency (rich) is installed by pip. git and ssh must be available on your system.

Usage

gerrit-checkout --init-config [--gerrit-server SERVER]
gerrit-checkout <topic|change-number|url> [--gerrit-server SERVER] [--repo PATH] [-v] [--plan | --html-report [PATH] | --rebase [--push] | --push]

The first positional argument accepts:

  • a topic name — fetches all open changes in that topic
  • a change number — fetches that specific change; if it belongs to a topic the full topic is loaded, otherwise the change is used directly as the dependency seed
  • a full Gerrit URL — e.g. https://gerrit.example.com/c/example/platform/test/+/12345

Note: Change numbers are globally unique within a Gerrit server, so 12345 always refers to the same change regardless of which project it belongs to.

Options

  • --gerrit-server: Gerrit server hostname (overrides config for this run only)
  • --repo: Git repository or repo-tool workspace path (default: current directory)
  • --init-config: Create ~/.gerrit-checkout.cfg with default values
  • -v, --verbose: Enable verbose traceback output on failures
  • --plan: Preview the checkout and rebase plans. It queries Gerrit and may fetch metadata, but does not checkout, rebase, or push.
  • --html-report [PATH]: Write the preview as HTML, optionally at PATH. It does not checkout, rebase, or push.
  • --rebase: Preflight the complete affected chain bottom-to-top in temporary worktrees and store validated local Git refs only if every rebase succeeds.
  • --push: Validate and push previously stored refs to Gerrit. With --rebase, push only after the complete preflight succeeds.

--plan and --html-report are preview-only modes and cannot be combined with --rebase or --push. --rebase and --push are compatible and may be used together.

Compatibility note: --dry-run remains an alias for --plan. The older --rebase-check, --check-rebase, --auto-rebase, and detailed report flags remain available for compatibility.

Command effects

gerrit-checkout TOPIC
    Local working-tree changes. Fetches and checks out planned changes.

gerrit-checkout TOPIC --plan
    Preview only. Queries Gerrit and may fetch metadata, but does not checkout,
    rebase or push.

gerrit-checkout TOPIC --html-report [PATH]
    Preview only. Writes an HTML report locally but does not checkout, rebase
    or push.

gerrit-checkout TOPIC --rebase
    Local Git metadata changes. Uses temporary worktrees and creates validated
    local Git refs. Does not change the main working tree or push to Gerrit.

gerrit-checkout TOPIC --push
    Remote Gerrit changes. Validates and pushes previously stored rebases.

gerrit-checkout TOPIC --rebase --push
    Remote Gerrit changes. Preflights the complete affected chain bottom-to-top
    and pushes only when every rebase succeeds. A conflict or validation failure
    pushes nothing.

Server value precedence:

  1. --gerrit-server (CLI override, current run only)
  2. ~/.gerrit-checkout.cfg -> [gerrit].server

If no server is set in either place, the command exits with an error.

Note: gerrit.example.com in the config template below is a sample only. Update it to your actual Gerrit hostname.

Config file

--init-config creates this file:

[gerrit]
server = gerrit.example.com
repo_path = .

For one-step setup, run gerrit-checkout --init-config --gerrit-server YOUR_HOST.

If the config file already exists, --init-config updates it.

What It Does

For a source topic, the tool will:

  1. query every open Gerrit change in the source topic
  2. recursively discover open parent topics and build one complete dependency graph
  3. group changes by normalized project and target branch, split them into connected components, and identify every component head
  4. independently build a rebase plan containing every affected open change
  5. either report the plans, checkout the repository leaves, or safely preflight the rebase chain

By default, mutations are limited to git fetch, checkout, temporary preflight worktrees, and tool-managed refs. Push happens only when --push is used.

A connected chain in one repository is represented by checking out its head. If a repository has multiple independent heads, preview modes show all of them, while normal checkout stops with a clear error because one worktree cannot represent multiple independent histories. Use separate worktrees manually for those heads.

Output

Preview plan

--plan prints a unified table that includes:

  • source-topic top changes
  • related-topic changes that are already covered by the source topic
  • related-topic changes that still need local checkout
  • a relation tree showing how each change reaches master
  • stale parent issues and rebase status
  • which changes would be rebased and which are blocked

Use --html-report [PATH] to write the preview to an HTML file for easier reading.

Rebase status

The rebase status view marks each change as one of:

  • rebased on latest open parent
  • parent already merged to master
  • warning: needs rebase
  • warning: parent unresolved

When stale parents are found, the tool prints a warning summary after the table.

Rebase

--rebase builds explicit dependency components from current revision parents. It finds every stale parent edge and adds only the open descendants in that component. Each component is ordered bottom-to-top; independent components are never stacked onto one another.

  • every patch set and parent ref is fetched and checked against the revision returned during planning
  • each change is replayed in a disposable Git worktree; the user's current branch, index, and files are not changed
  • each child is replayed onto the newly generated commit for its parent
  • Gerrit Change-Id footers are verified before and after every replay
  • unresolved parents, merge commits, conflicts, and rebase failures block the operation and return a non-zero exit code
  • a conflict names the failing change and every blocked descendant; no changes are pushed
  • local tool-managed refs are stored only after the complete graph passes preflight

Push

--push publishes previously rebased local changes in bottom-to-top order.

  • before the first push, every stored result is checked against its original Gerrit revision, its validated parent, its current Gerrit patch set, and its Change-Id
  • a missing, stale, or modified local ref prevents all pushes and returns a non-zero exit code
  • pushes stop immediately if Gerrit rejects any change; later descendants remain unpushed
  • successfully pushed local refs and their validation metadata are cleaned up automatically

Safety and exit status

Preflight may fetch Gerrit objects and create temporary worktrees, but it never checks out or rebases in the user's working tree. Temporary worktrees are removed whether a replay succeeds or conflicts. No Gerrit push starts until every affected change has passed preflight and every stored ref has passed freshness validation.

The command exits non-zero for unresolved dependencies, conflicts, rebase failures, stale stored refs, push failures, and descendants blocked by any of those failures. A preview also exits non-zero when it reports unresolved rebase dependencies, which makes it suitable for CI validation.

Examples

# By topic name
gerrit-checkout FEATURE-1234

# By change number
gerrit-checkout 12345

# By full Gerrit URL
gerrit-checkout "https://gerrit.example.com/c/example/platform/test/+/12345"

# Preview the full checkout plan (no actual fetch/checkout)
gerrit-checkout FEATURE-1234 --plan

# Write preview output to the default HTML report location
gerrit-checkout FEATURE-1234 --html-report

# Write preview output to an explicit path
gerrit-checkout FEATURE-1234 --html-report gerrit-checkout-report.html

# Rebase stale changes locally in dependency order
gerrit-checkout FEATURE-1234 --rebase

# Push previously rebased changes
gerrit-checkout FEATURE-1234 --push

# Rebase now and push immediately after
gerrit-checkout FEATURE-1234 --rebase --push

# Use an explicit Gerrit host for one run
gerrit-checkout FEATURE-1234 --gerrit-server gerrit.example.com

# Create default config once
gerrit-checkout --init-config --gerrit-server gerrit.example.com

Requirements

  • Python 3.7+
  • Git
  • SSH access to Gerrit

Uninstall

python3 -m pip uninstall -y gerrit-checkout && rm -f ~/.gerrit-checkout.cfg

0.5.2

The 0.5.2 release validates that every rebase candidate maps to exactly one Git commit before replay. It rejects multi-commit ranges and unsupported merge or root commits, then verifies the new parent, changed paths, commit message, and Gerrit Change-Id before storing refs or allowing a push. Rebase output now distinguishes topic changes, supporting parents, dependency chains, replayed commits, stored ref sets, and pushed changes.

0.5.4

The 0.5.4 release retains exact intermediate Gerrit parent changes in one canonical graph. Transitive chains now produce only their true checkout head, while genuinely independent histories and stale/non-current patch-set links remain explicit. Terminal and self-contained HTML previews include all direct and supporting nodes, repository paths, checkout targets, rebase order, blockers, and matching summary counts.

0.5.5

The 0.5.5 release makes every HTML report filter dropdown responsive and readable for long topics, repository names, and paths. Native checkboxes keep their intrinsic size, option text wraps without clipping, menus stay within narrow and zoomed viewports, and labelled controls preserve keyboard navigation with Escape-to-close focus restoration.

0.5.6

The 0.5.6 release fixes linked-topic planning across repositories. Gerrit topic expansion now builds the complete recursive cross-project closure before component grouping or repository filtering. Terminal and HTML reports consume the same canonical plan with matching changes, topics, projects, local paths, dependency relationships, checkout heads, rebase candidates, and skipped reasons.

0.5.7

The 0.5.7 release makes Gerrit dependency discovery easier to follow and faster across repeated queries. It prints one concise dependency-resolution status message and reuses the SSH connection for topic, revision, and change-number lookups.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gerrit_checkout-0.5.7.tar.gz (53.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gerrit_checkout-0.5.7-py3-none-any.whl (39.9 kB view details)

Uploaded Python 3

File details

Details for the file gerrit_checkout-0.5.7.tar.gz.

File metadata

  • Download URL: gerrit_checkout-0.5.7.tar.gz
  • Upload date:
  • Size: 53.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for gerrit_checkout-0.5.7.tar.gz
Algorithm Hash digest
SHA256 e0cc4cff745a5f40570d7982e799096f49770e1c363bc883470cfaa8ca3b99a0
MD5 4305894ee36a7607f6fa16a8a6addc3d
BLAKE2b-256 8f87608589572af5b010185c455f4b7f36e6275bb9b53a1d990cd04e642bf402

See more details on using hashes here.

Provenance

The following attestation bundles were made for gerrit_checkout-0.5.7.tar.gz:

Publisher: python-publish.yml on tpiyasek/gerrit-checkout

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gerrit_checkout-0.5.7-py3-none-any.whl.

File metadata

  • Download URL: gerrit_checkout-0.5.7-py3-none-any.whl
  • Upload date:
  • Size: 39.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for gerrit_checkout-0.5.7-py3-none-any.whl
Algorithm Hash digest
SHA256 eb86bb70c1eb2330323f5c850b67f3a238d295a128e635be71162247aaeb5702
MD5 b2ec15189623869433599cacec0803bd
BLAKE2b-256 138dfd974fcb2b0cf812a4b644695b1ff8a7b154758fd6ec873d87a59d4a22b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for gerrit_checkout-0.5.7-py3-none-any.whl:

Publisher: python-publish.yml on tpiyasek/gerrit-checkout

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page