Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/indirect/gerrit-tools
Tools to make working with Gerrit code review easier
https://github.com/indirect/gerrit-tools
Last synced: 26 days ago
JSON representation
Tools to make working with Gerrit code review easier
- Host: GitHub
- URL: https://github.com/indirect/gerrit-tools
- Owner: indirect
- Created: 2010-01-27T00:33:23.000Z (almost 15 years ago)
- Default Branch: main
- Last Pushed: 2020-06-27T07:20:22.000Z (over 4 years ago)
- Last Synced: 2024-08-09T17:13:01.891Z (3 months ago)
- Homepage:
- Size: 9.77 KB
- Stars: 24
- Watchers: 4
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gerrit Tools
A few scripts to make code review via [Gerrit Code Review](http://gerrit.googlecode.com) easier for developers.
## gerrit-cherry-pick
This is a script that allows you to cherry-pick a particular patch from Gerrit, so that it can be reviewed easily. It comes with Gerrit, but is included here because Gerrit 2.1.1.1 does not yet contain support for the `--latest` option.
## gerrit-setup
Gerrit-setup will attempt to convert a repository cloned from github to use Gerrit as the origin instead.
## git-review
Git-review is a wrapper script to make creating, reviewing, and approving Gerrit changes very simple. In the simplest case, you can have an entire Git workflow that looks like this for people creating a new changeset:
git review push
And looks like this for people reviewing someone else's changeset:
git review 123
rake && git review approve
git review resetYou may find it helpful to alias `gr` to `git review`.
## Contributing
Feel free to fork and send a pull request if you think you've improved anything.