commit | 30af94f4ce20cfd69426381d3da81173443be2d7 | [log] [tgz] |
---|---|---|
author | Edwin Kempin <ekempin@google.com> | Wed Aug 23 11:45:03 2017 +0200 |
committer | Edwin Kempin <ekempin@google.com> | Tue Aug 29 10:39:53 2017 +0200 |
tree | a7d429c24193e7c39e4112920e22ff02e4b77c2a | |
parent | 4edaf0eda14cf7841d71dde3c8ce6e9a859500e0 [diff] |
Remove support for reading accounts from ReviewDb Accounts have been fully migrated to NoteDb. However inside of Google we still have code that depends on having all accounts in the Accounts table. This means we must still write account updates to the Accounts table. On the other hand also for us Gerrit server is always reading the accounts from NoteDb. This means the code for reading accounts from ReviewDb can be removed already now. This is why removing the support for accounts in ReviewDb is done in 2 parts: 1. remove support for reading accounts from ReviewDb (this change) 2. remove support for writing accounts to ReviewDb (follow-up change) Change-Id: Id51a0504635de30f95205ec76d51e2be8ff6f462 Signed-off-by: Edwin Kempin <ekempin@google.com>
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 IRC channel on freenode is #gerrit. An archive is available at: echelog.com.
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 --recursive 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.