commit | 559132d8fd699f2a52c8f5d744cf6b29f1fc47d0 | [log] [tgz] |
---|---|---|
author | Prudhvi Akhil Alahari <prudhvi@codeaurora.org> | Tue Sep 28 18:27:44 2021 +0530 |
committer | Prudhvi Akhil Alahari <prudhvi@codeaurora.org> | Thu Oct 28 22:40:35 2021 +0530 |
tree | 046dc349f8da3516d009562e75f5ec6a499a56a6 | |
parent | 5e549c72db28e2a1c45b3f05ef5552de0b0e95df [diff] |
Add REST endpoint for commits included in refs Add a REST endpoint /projects/{project-name}/commits:in which gets refs in which the specified commits were merged into. Takes commit and ref as query parameters and returns a map of commits to set of full ref names. Gerrit has an ../commits/{commit-id}/in API which returns all branches and tags the commit is part of. But ../commits/{commit-id}/in API is less performant if the caller is only interested in a specific ref(s) and the API is limited to branches and tags. Since the commits:in API has a specific list of input refs, the commits:in API is exposed at /projects/{project-name}/ level instead of /projects/{project-name}/commits/{commit-id}/ so as to avoid checking the reachability of a commit twice (once in commits:in and once in CommitsCollection). Exposing the commits:in API at /projects/{project- name}/ level allows the API to take more than one commit. Adds acceptance tests and documentation. Change-Id: I756c55f87a203cc6693ada300c8441cfed15c9c8
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.