Update JGit to 596c445af

$ git log --oneline --no-merges ^a1901305b 596c445af
596c445af (HEAD, origin/master, origin/HEAD) PackConfig: add entry for minimum size to index
c9552abaf PackObjectSizeIndex: interface and impl for the object-size index
62d0e7be7 UInt24Array: Array of unsigned ints encoded in 3 bytes.
5b9ca7df4 PackIndex: expose the position of an object-id in the index
df5b7959b DfsPackFile/DfsGC: Write commit graphs and expose in pack
eccae7cf0 ObjectReader: Allow getCommitGraph to throw IOException
341116103 UploadPack: consume delimiter in object-info command
a399bd13b PatchApplier fix - init cache with provided tree
63326d103 (origin/stable-6.5) Prepare 6.5.0-SNAPSHOT builds
8b78e6fdc (tag: v6.5.0.202302011120-m2) JGit v6.5.0.202302011120-m2
9dfd2ff66 Avoid error-prone warning
b30c75be4 Fix unused exception error-prone warning
97e8b4cc7 UploadPack: advertise object-info command if enabled
21e902dd7 Shortcut during git fetch for avoiding looping through all local refs
765083200 FetchCommand: fix fetchSubmodules to work on a Ref to a blob
8040936f8 Silence API warnings introduced by I466dcde6
ad977f157 Allow the exclusions of refs prefixes from bitmap
0f3a3fde9 Move MemRefDatabase creation in a separate method.
e4529cd39 PackWriterBitmapPreparer: do not include annotated tags in bitmap
611412a05 BatchingProgressMonitor: avoid int overflow when computing percentage
66ad43a6c DfsReaderIoStats: Add Commit Graph fields into DfsReaderIoStats
eb3a70867 [pgm] Fetch-CLI: add support for shallow
cd3fc7a29 Speedup GC listing objects referenced from reflogs
b48f5739d Re-add servlet-api 4.0 to the target platform
42d78f788 Upgrade maven plugins
f46f30cdc Prepare 6.5.0-SNAPSHOT builds
a549ef002 (tag: v6.5.0.202301111425-m1) JGit v6.5.0.202301111425-m1
2011fe06d FileSnapshotTest: Add more MISSING_FILE coverage

This fixes /patch:apply endpoint and the object-info
protocol V2 command.

Change-Id: Ieca0293cb47f0c425160c1e2118d1eb44c36676c
Release-Notes: n/a
(cherry picked from commit 513e934cadd9fc842b6c3370d2f074aafaac3959)
1 file changed
tree: f2f3db45d32c43e57f08748a46290206d60db76e
  1. .settings/
  2. .ts-out/
  3. antlr3/
  4. contrib/
  5. Documentation/
  6. e2e-tests/
  7. java/
  8. javatests/
  9. lib/
  10. modules/
  11. plugins/
  12. polygerrit-ui/
  13. prolog/
  14. prologtests/
  15. proto/
  16. resources/
  17. tools/
  18. webapp/
  19. .bazelignore
  20. .bazelproject
  21. .bazelrc
  22. .bazelversion
  23. .editorconfig
  24. .git-blame-ignore-revs
  25. .gitignore
  26. .gitmodules
  27. .gitreview
  28. .mailmap
  29. .pydevproject
  30. .zuul.yaml
  31. BUILD
  32. COPYING
  33. INSTALL
  34. Jenkinsfile
  35. package.json
  36. README.md
  37. SUBMITTING_PATCHES
  38. version.bzl
  39. WORKSPACE
  40. yarn.lock
README.md

Gerrit Code Review

Gerrit is a code review and project management tool for Git based projects.

Build Status Maven Central

Objective

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.

Documentation

For information about how to install and use Gerrit, refer to the documentation.

Source

Our canonical Git repository is located on googlesource.com. There is a mirror of the repository on Github.

Reporting bugs

Please report bugs on the issue tracker.

Contribute

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.

Getting in contact

The Developer Mailing list is repo-discuss on Google Groups.

License

Gerrit is provided under the Apache License 2.0.

Build

Install Bazel and run the following:

    git clone --recurse-submodules https://gerrit.googlesource.com/gerrit
    cd gerrit && bazel build release

Install binary packages (Deb/Rpm)

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>]

Use pre-built Gerrit images on Docker

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.