diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2024-01-20 00:18:25 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2024-01-20 00:37:52 +0100 |
commit | b5bfa90a9e2deb13b5151e5d9885db741b2e7f7a (patch) | |
tree | 41f528493fac42185f1ced1c1851ba68cdba6634 /Documentation | |
parent | 11bb889d0b5d386d04751d7380c6be082ffc9112 (diff) | |
parent | b4c66104fb7502f133989291a4a5595f965771d3 (diff) | |
download | jgit-b5bfa90a9e2deb13b5151e5d9885db741b2e7f7a.tar.gz jgit-b5bfa90a9e2deb13b5151e5d9885db741b2e7f7a.zip |
Merge branch 'stable-6.6' into stable-6.7
* stable-6.6:
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: I76ebca527e523f124bfe81c821169c790eddccb6
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/config-options.md | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Documentation/config-options.md b/Documentation/config-options.md index d57b92d52f..810bbc6525 100644 --- a/Documentation/config-options.md +++ b/Documentation/config-options.md @@ -132,4 +132,10 @@ Proxy configuration uses the standard Java mechanisms via class `java.net.ProxyS | option | default | git option | description | |---------|---------|------------|-------------| -| `repack.packKeptObjects` | `true` when `pack.buildBitmaps` is set, `false` otherwise | ✅ | Include objects in packs locked by a `.keep` file when repacking. |
\ No newline at end of file +| `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`. | |