commit | b9f0db257e4be7338b251158eecdbd4587af4cb0 | [log] [tgz] |
---|---|---|
author | Edwin Kempin <ekempin@google.com> | Thu Jan 19 08:57:40 2023 +0100 |
committer | Edwin Kempin <ekempin@google.com> | Wed Jan 25 16:29:41 2023 +0100 |
tree | f7c72d99c16bddada4fb55416b2e9bbbe97c8379 | |
parent | 98122e892326f43850eea32a890a45fa8ce0fe4d [diff] |
Allow to bind a different implementation for creating reflog identities In the reflog we record the identity of the user that updates the ref or the user on whom's behalf the ref is updated. By default the recorded identity consists out of the user's fullname and the user's preferred email. This means when a user changes their preferred email it changes their reflog identity. At Google we prefer to keep the recorded reflog identity stable and always record the email that matches the user's primary Google identity, regardless of which email they have configured as preferred. Release-Notes: skip Signed-off-by: Edwin Kempin <ekempin@google.com> Change-Id: Iddd712c256ae677aea413b4523b53ce1d31c111c
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 8 based Gerrit image:
docker run -p 8080:8080 gerritcodereview/gerrit[:version]-centos8
To run a Ubuntu 20.04 based Gerrit image:
docker run -p 8080:8080 gerritcodereview/gerrit[:version]-ubuntu20
NOTE: release is optional. Last released package of the version is installed if the release number is omitted.