Tool for uploading changesets to Gerrit from git
Go to file
Monty Taylor c43cec1857 Fix manpage installation for setup.py install.
Change-Id: If9906cea283ada30d4901969c2b949086a9074b2
2011-10-05 15:50:36 -04:00
doc Added support for download command. 2011-10-04 23:38:40 -04:00
.gitignore Fix manpage installation for setup.py install. 2011-10-05 15:50:36 -04:00
AUTHORS Bug fixes relating to first-time runs. 2011-09-28 10:17:43 -07:00
LICENSE Ported rfc.sh to a standalone program. 2011-09-25 09:16:31 -07:00
MANIFEST.in Fix manpage installation for setup.py install. 2011-10-05 15:50:36 -04:00
README Fix manpage installation for setup.py install. 2011-10-05 15:50:36 -04:00
git-review Added support for download command. 2011-10-04 23:38:40 -04:00
setup.py Fix manpage installation for setup.py install. 2011-10-05 15:50:36 -04:00

README

# git-review: A git command for submitting branches to Gerrit

git-review is a tool that helps submitting git branches to gerrit for review

# Assumptions

git-review, by default, looks for a git remote called gerrit, and submits
the current branch to HEAD:refs/for/master at that remote.

# Usage

Hack on some code, then:

  git review

If you want to submit that code to a different target branch, then:

  git review branchname

If you want to submit to a different remote:

  git review -r my-remote

If you want to supply a review topic:

  git review -t topic/awesome-feature

If you want to submit your change to a branch other than master:

  git review milestone-proposed

If you want to skip the automatic rebase -i step:

  git review -R

If you want to download change 781 from gerrit to review it:

  git review -d 781