commit | c2fce753cdef819c912206743960d0c7b55beaf5 | [log] [tgz] |
---|---|---|
author | Edwin Kempin <ekempin@google.com> | Tue Sep 17 14:39:13 2024 +0000 |
committer | Edwin Kempin <ekempin@google.com> | Thu Sep 19 09:39:00 2024 +0000 |
tree | 5515e3da3a7f37e7aeb0c788f0149c5a63cc1c2b | |
parent | e895c08185c6a427273af16a446a4d9bc3cda397 [diff] |
Add screen to browse the server info GET /config/server/info returns a JSON describing important properties of the server. Most of them are only needed for PolyGerrit, but some are relevant for users, e.g. which account visibility is configured or the server metadata (needed to investigate account and ACL issues). Pointing users to this REST endpoint and explaining them where in the returned JSON they can find relevant information is difficult and not user friendly. Instead have a screen that shows the user relevant part of the server info in a simple list. Then we can tell users to look at value Foo at this screen. The new screen is available at /admin/server-info. This is an example how it looks like: https://i.imgur.com/WVafczb.png Bug: Google b/330836100 Release-Notes: Added screen to browse the server info Change-Id: Iad1c19b7848974c26582433757d8aea2617cbf39 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 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.