diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2024-01-20 01:03:52 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2024-01-20 01:03:52 +0100 |
commit | c4af3691225b5e43ec8059edeeddc6d913e948f6 (patch) | |
tree | 257626043b13f51d3226de9595fe700ee32efe41 /Documentation/config-options.md | |
parent | ba5adc4ce6f234cb300b0f73a1efdba9bba1b5d8 (diff) | |
parent | 03d465c49c7957fc51fcc3e2f32021913b113784 (diff) | |
download | jgit-c4af3691225b5e43ec8059edeeddc6d913e948f6.tar.gz jgit-c4af3691225b5e43ec8059edeeddc6d913e948f6.zip |
Merge branch 'stable-6.8'
* stable-6.8:
Introduce a PriorityQueue sorting RevCommits by commit timestamp
Remove org.eclipse.jgit.benchmark/.factorypath
Update jmh to 1.37 for org.eclipse.jgit.benchmark
Change-Id: Ifdd88eed34be3a1f4897b468392fd86bbc3f3a64
Diffstat (limited to 'Documentation/config-options.md')
-rw-r--r-- | Documentation/config-options.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/config-options.md b/Documentation/config-options.md index ff223ab4cc..ca94ab84d1 100644 --- a/Documentation/config-options.md +++ b/Documentation/config-options.md @@ -135,6 +135,13 @@ Proxy configuration uses the standard Java mechanisms via class `java.net.ProxyS |---------|---------|------------|-------------| | `repack.packKeptObjects` | `true` when `pack.buildBitmaps` is set, `false` otherwise | ✅ | Include objects in packs locked by a `.keep` file when repacking. | + +## Java System Properties + +| system property | default | description | +|-----------------|---------|-------------| +| `REVWALK_USE_PRIORITY_QUEUE` | `false` | If set to `true` `RevWalk` uses `DateRevPriorityQueue` which is faster, otherwise it uses the old `DateRevQueue`. | + ## Tracing **GIT_TRACE_PERFORMANCE**: set this to `true` as a Java system property or environment variable to trace timings from the progress monitor. The system property takes |