commit | 1886d242e62fd84918b4a5353a430273842ee720 | [log] [tgz] |
---|---|---|
author | David Pursehouse <dpursehouse@digital.ai> | Tue Jul 21 00:35:12 2020 +0900 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Jul 20 15:35:12 2020 +0000 |
tree | ea15ea0a58ea0cfcc30fc82d314baba411dbb9c7 | |
parent | d84639c061571fa0bd191c543b41441c664e4f5c [diff] |
Update git submodules * Update plugins/download-commands from branch 'master' to fd650ca386c382b42d30e7ad72279bfeb311aee4 - New command: "Reset To" Add a new command that allows to reset the current branch to the commit that was fetched. This is useful in cases when the user is working on a local branch and the existing commands are not appropriate: - "Checkout" will check out the FETCH_HEAD, i.e. moving off the current branch and leaving the local repository in 'detached head' state. - "Cherry-Pick" will commit the fetched change again, resulting in a 'new' commit (i.e. changed sha1) which will result in a new patch set if the user creates any commits on top of it and pushes for review. Change-Id: I683f88aa0d8ad6a6dd91f341bd23d363d329e174
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.