diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2024-01-20 00:40:42 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2024-01-20 00:40:42 +0100 |
commit | 03d465c49c7957fc51fcc3e2f32021913b113784 (patch) | |
tree | 4061c8eef657cb91e98636d32d2133cb2a2105ea /Documentation | |
parent | 2a3bbae47a3358d97f3a5d61178c2448730c40db (diff) | |
parent | b5bfa90a9e2deb13b5151e5d9885db741b2e7f7a (diff) | |
download | jgit-03d465c49c7957fc51fcc3e2f32021913b113784.tar.gz jgit-03d465c49c7957fc51fcc3e2f32021913b113784.zip |
Merge branch 'stable-6.7' into stable-6.8
* stable-6.7:
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: I5d49a9dc7da17b83243229d4d8d3b9ee0a063e65
Diffstat (limited to 'Documentation')
-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 84c4f5a664..ec9d86bd8d 100644 --- a/Documentation/config-options.md +++ b/Documentation/config-options.md @@ -134,6 +134,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 |