Git subcommand to ease local branch management with gerrit.
Project description
Git Gerrit Bridge
Table of Contents
Motivation
Working with git and gerrit can be done in numerous ways, just to name a few:
- No local branches and purely in detached HEAD mode
- One local branch per remote branch
- One local branch per bug/feature
Feature branches have the downside that there will be many and to keep the overview they have to be cleaned up/deleted regularly.
Git can do this for fully integrated branches with git branch -d <branch>
.
The issue is that often changes are purely modified in gerrit (rebase or online edits),
preventing git from detecting if a local branch is fully integrated or not (git hashes differ).
The git gerrit
script maps local changes to remote changes and can therefore handle such situations.
Let's look at an example usage.
Usage
- Create a new local branch
topic-1
, tracking the remoteorigin/development
branch:
git gerrit new development topic-1
- Do the implementation and commit:
touch feature.txt
git add feature.txt
git commit -m "Added feature.txt"
- Upload changes to gerrit (Commit chains are fine):
The remote tracking branch is automatically used as target
git gerrit push
- Get an overview of your changes (remote and local):
git gerrit status
┏━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Number ┃ Subject ┃ Status ┃ Remote Branch ┃ Local Branch ┃
┡━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ 1000001 │ 🌐 Change only available in gerrit │ Only Remote │ development │ │
│ 1000003 │ 🌐 Change was edited or rebased in gerrit │ Old Local │ development │ stale │
│ 1000004 │ 🌐 Change was amended locally │ Old Remote │ development │ active │
│ 1000009 │ 🌐 Added feature.txt │ In Sync │ development │ topic-1 │
│ 1000005 │ 🌐 Local and remote change have the same hash │ In Sync │ feature-1 │ chain │
│ │ ⚡ Local change not yet pushed to gerrit │ Only Local │ hot-fix │ hacking │
│ 1000006 │ 🐞 Follow up for 1000005 as commit chain │ In Sync │ feature-1 │ chain │
│ 1000007 │ ❌ Change was merged in gerrit │ Merged │ development │ bug123 │
│ 1000008 │ ❌ Change was abandoned in gerrit │ Abandoned │ development │ bug321 │
└─────────┴───────────────────────────────────────────────┴─────────────┴────────────────┴──────────────┘
🌐 Remote Change; ⚡ Local Change; 🐞 WIP Change; ❌ To be deleted; Click Number to open in browser
- Remove fully integrated branches:
git gerrit clean
Cleaning 8 branches:
branch_with_no_remote ? Commits Skipped (no remote set)
active 1 Commits Skipped (Not yet merged)
bug123 1 Commits Deleted
bug321 1 Commits Deleted
chain 2 Commits Skipped (Not yet merged)
hacking 1 Commits Skipped (Not yet pushed)
stale 1 Commits Skipped (Not yet merged)
topic-1 1 Commits Skipped (Not yet merged)
Further commands are:
git gerrit checkout <number> <branch>
to download and checkout a gerrit change in a new local branchgit gerrit rebase
to start an interactive rebase of the local changes without rebasing on the remote.git gerrit sync
to rebase the current branch by picking remote and local changes depending on which is newer.
Installation
pip install git-gerrit-bridge
License
git-gerrit
is distributed under the terms of the GPL-3.0-or-later license.
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
File details
Details for the file git_gerrit_bridge-1.2.0.tar.gz
.
File metadata
- Download URL: git_gerrit_bridge-1.2.0.tar.gz
- Upload date:
- Size: 21.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1bd800464a0f26b37f4a46040b9d161b5076d53900b1eec4eac5c5b988846ea |
|
MD5 | a4350ea8cd7490d106f99198ed04cc68 |
|
BLAKE2b-256 | 0b85929f912501fcdadc8e54eadd96b4cb6d336198a24054a92f2a45b15d9071 |
File details
Details for the file git_gerrit_bridge-1.2.0-py3-none-any.whl
.
File metadata
- Download URL: git_gerrit_bridge-1.2.0-py3-none-any.whl
- Upload date:
- Size: 28.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 263e7a7210906cf8f4c847b1fee0adb6b25fa51ca9c7b35bf4cedba8398295ba |
|
MD5 | 695f6f3c4d310ac8f71405d172116fd9 |
|
BLAKE2b-256 | b64c95c32c8584f5cd8a82373b6ff9414ada001109e2f1fefa29db4a0b7d0fba |