commit | 6547e2f99931378b01153cda0ba4094d8be7ddf1 | [log] [tgz] |
---|---|---|
author | Ben Rohlfs <brohlfs@google.com> | Fri Sep 15 18:02:25 2023 +0200 |
committer | Ben Rohlfs <brohlfs@google.com> | Mon Sep 18 10:56:59 2023 +0000 |
tree | 0e39a03a4ecec730dd4f8d31e037c5db0f48ea63 | |
parent | 5f159a05766064326918f75249d304e83b2fb6fc [diff] |
Add a first experimental version of <gr-revision-parents> This is flag protected by `UiFeature__revision_parents_data` and only visible to developers. This change only sets up the new component and the code structure. It surfaces the data for developer purposes only and looks like this: https://imgur.com/a/v6dhdwn. The actual UI design will happen in subsequent changes. We are requesting the `PARENTS` change detail option, which is not even flag protected. It will just return more information that we will definitely need for this feature. And this is not expected to add any substantial latency. We have also refined the type model of `RevisionInfo` by removing `basePatchNum` from it, which should only be a property of `EditRevisionInfo`. Release-Notes: skip Google-Bug-Id: b/289177174 Change-Id: I271d8cdcc88de68d2f7738a06b23909ef3e8f1c0
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.