commit | 455cd21f571f87c5bc1fdcf21fb0e0b608241b92 | [log] [tgz] |
---|---|---|
author | David Pursehouse <dpursehouse@collab.net> | Wed Aug 28 18:16:23 2019 +0900 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Aug 28 09:16:23 2019 +0000 |
tree | 49193d33e6b45226ced8213a58b549a6770c3431 | |
parent | e9b6815597553a669bacaeb03e6af8bdae623ad2 [diff] |
Update git submodules * Update plugins/replication from branch 'stable-2.16' to 236d9a6468c6e91f3d5135413adbf06071770625 - AdminApi: Reintroduce return value of methods Prior to change Ie760bf3e1 all the methods of GerritSshApi returned a boolean value. After that change, they all return void. Removing the return value breaks classes that extend GerritSshApi and expect to be able to invoke the superclass implementation and get the status. In change I6566f8671 the return value of createProject was changed back to boolean, but the others were not. Change the remaining methods back to return a boolean. Change-Id: If4a9227f70bfcd85965e1febd45f4a75cc2505bd Signed-off-by: David Pursehouse <dpursehouse@collab.net>
Gerrit is a code review and project management tool for Git based projects.
Gerrit makes reviews easier by showing changes in a side-by-side display, and allowing inline comments to be added by any reviewer.
Gerrit simplifies Git based project maintainership by permitting any authorized user to submit changes to the master Git repository, rather than requiring all approved changes to be merged in by hand by the project maintainer.
For information about how to install and use Gerrit, refer to the documentation.
Our canonical Git repository is located on googlesource.com. There is a mirror of the repository on Github.
Please report bugs on the issue tracker.
Gerrit is the work of hundreds of contributors. We appreciate your help!
Please read the contribution guidelines.
Note that we do not accept Pull Requests via the Github mirror.
The Developer Mailing list is repo-discuss on Google Groups.
Gerrit is provided under the Apache License 2.0.
Install Bazel and run the following:
git clone --recurse-submodules https://gerrit.googlesource.com/gerrit cd gerrit && bazel build release
The instruction how to configure GerritForge/BinTray repositories is here
On Debian/Ubuntu run:
apt-get update & apt-get install gerrit=<version>-<release>
NOTE: release is a counter that starts with 1 and indicates the number of packages that have been released with the same version of the software.
On CentOS/RedHat run:
yum clean all && yum install gerrit-<version>[-<release>]
On Fedora run:
dnf clean all && dnf install gerrit-<version>[-<release>]
Docker images of Gerrit are available on DockerHub
To run a CentOS 7 based Gerrit image:
docker run -p 8080:8080 gerritforge/gerrit-centos7[:version]
To run a Ubuntu 15.04 based Gerrit image:
docker run -p 8080:8080 gerritforge/gerrit-ubuntu15.04[:version]
NOTE: release is optional. Last released package of the version is installed if the release number is omitted.