commit | ac295910bedd947b28fc7cb58f997ff49fbfecec | [log] [tgz] |
---|---|---|
author | Saša Živkov <sasa.zivkov@sap.com> | Fri Apr 05 19:04:35 2024 +0200 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri Apr 05 17:04:35 2024 +0000 |
tree | ccbedb04be5b905dc357ee6823edda5445b31d64 | |
parent | a37f39589e3ebdc39dc75dcd13d1dc3872119879 [diff] |
Update git submodules * Update plugins/hooks from branch 'master' to 41c3ad1d584f3b81bacc59e89e022dc1e7ffc3f2 - Resolve relative hooks.path against $site_path, not cwd of the process When hooks.path was given as relative path it got resolved against the current working directory of the Gerrit process. While it may often be the case that the current working directory of Gerrit process is the $site_path, it is not guaranteed and, depending how Gerrit is started, it may be some other directory. Most, if not all, of the relative paths in gerrit.config are resolved against the $site_path and we should do the same for the hooks.path. Release-Notes: Resolve relative hooks.path against $site_path Change-Id: Ie72c0657393e1dfe078155e27edbd4c0412892e6
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.