Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 reset

You 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.