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.cfgwith 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 atPATH. 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:
--gerrit-server(CLI override, current run only)~/.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:
- query every open Gerrit change in the source topic
- recursively discover open parent topics and build one complete dependency graph
- group changes by normalized project and target branch, split them into connected components, and identify every component head
- independently build a rebase plan containing every affected open change
- 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 parentparent already merged to masterwarning: needs rebasewarning: 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-Idfooters 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.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gerrit_checkout-0.5.5.tar.gz.
File metadata
- Download URL: gerrit_checkout-0.5.5.tar.gz
- Upload date:
- Size: 51.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b026d006d85766ee3c190cb247057afcc93d21d7fc4b933dcb59ac9f08b5a0a
|
|
| MD5 |
35327ca660e9ca790c66dd1bfc62db7b
|
|
| BLAKE2b-256 |
4e3861ca51c812bddcb7f4c3781afa670895b9caed44e6597de3e0f3c0936cdd
|
Provenance
The following attestation bundles were made for gerrit_checkout-0.5.5.tar.gz:
Publisher:
python-publish.yml on tpiyasek/gerrit-checkout
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gerrit_checkout-0.5.5.tar.gz -
Subject digest:
9b026d006d85766ee3c190cb247057afcc93d21d7fc4b933dcb59ac9f08b5a0a - Sigstore transparency entry: 2188851028
- Sigstore integration time:
-
Permalink:
tpiyasek/gerrit-checkout@297ceb1343f5c0c4c62d0c1bc2dd48ef2244b45f -
Branch / Tag:
refs/tags/v0.5.5 - Owner: https://github.com/tpiyasek
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@297ceb1343f5c0c4c62d0c1bc2dd48ef2244b45f -
Trigger Event:
push
-
Statement type:
File details
Details for the file gerrit_checkout-0.5.5-py3-none-any.whl.
File metadata
- Download URL: gerrit_checkout-0.5.5-py3-none-any.whl
- Upload date:
- Size: 38.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86e440be597fb41b4814eee8f2c10dba69d91899f096d67d9352d3e94d7923ab
|
|
| MD5 |
cff044493b343895c0b4dfaea47450af
|
|
| BLAKE2b-256 |
06c190436ada671fbd39cc904e213fa626a962723b0fcf2083ca22bb6d5ca058
|
Provenance
The following attestation bundles were made for gerrit_checkout-0.5.5-py3-none-any.whl:
Publisher:
python-publish.yml on tpiyasek/gerrit-checkout
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gerrit_checkout-0.5.5-py3-none-any.whl -
Subject digest:
86e440be597fb41b4814eee8f2c10dba69d91899f096d67d9352d3e94d7923ab - Sigstore transparency entry: 2188851077
- Sigstore integration time:
-
Permalink:
tpiyasek/gerrit-checkout@297ceb1343f5c0c4c62d0c1bc2dd48ef2244b45f -
Branch / Tag:
refs/tags/v0.5.5 - Owner: https://github.com/tpiyasek
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@297ceb1343f5c0c4c62d0c1bc2dd48ef2244b45f -
Trigger Event:
push
-
Statement type: