You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* master:
Ensure access to autoRefresh is thread-safe
FileReftableStack: use FileSnapshot to detect modification
FileReftableDatabase: consider ref updates by another process
BlameRegionMerger: report invalid regions with checked exception.
[ssh known_hosts] Handle unknown keys better
[releng] Remove unused target platform definitions
Change-Id: I2e49d582a5be9f1383b4f1713e33cb378b4f6118
Copy file name to clipboardExpand all lines: Documentation/config-options.md
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -58,9 +58,10 @@ For details on native git options see also the official [git config documentatio
58
58
|~~`core.trustFolderStat`~~|`true`|⃞|__Deprecated__, use `core.trustStat` instead. If set to `true` translated to `core.trustStat=always`, if `false` translated to `core.trustStat=never`, see below. If both `core.trustFolderStat` and `core.trustStat` are configured then `trustStat` takes precedence and `trustFolderStat` is ignored. |
59
59
|`core.trustLooseRefStat`|`inherit`|⃞| Whether to trust the file attributes of loose refs and its fan-out parent directory. See `core.trustStat` for possible values. If `inherit`, JGit will use the behavior configured in `trustStat`. |
60
60
|`core.trustPackedRefsStat`|`inherit`|⃞| Whether to trust the file attributes of the packed-refs file. See `core.trustStat` for possible values. If `inherit`, JGit will use the behavior configured in `core.trustStat`. |
61
+
|`core.trustTablesListStat`|`inherit`|⃞| Whether to trust the file attributes of the `tables.list` file used by the reftable ref storage backend to store the list of reftable filenames. See `core.trustStat` for possible values. If `inherit`, JGit will use the behavior configured in `core.trustStat`. The reftable backend is used if `extensions.refStorage = reftable`. |
61
62
|`core.trustLooseObjectStat`|`inherit`|⃞| Whether to trust the file attributes of the loose object file and its fan-out parent directory. See `core.trustStat` for possible values. If `inherit`, JGit will use the behavior configured in `core.trustStat`. |
62
63
|`core.trustPackStat`|`inherit`|⃞| Whether to trust the file attributes of the `objects/pack` directory. See `core.trustStat` for possible values. If `inherit`, JGit will use the behavior configured in `core.trustStat`. |
63
-
|`core.trustStat`|`always`|⃞| Global option to configure whether to trust file attributes (Java equivalent of stat command on Unix) of files storing git objects. Can be overridden for specific files by configuring `core.trustLooseRefStat, core.trustPackedRefsStat, core.trustLooseObjectStat, core.trustPackStat`. If `never` JGit will ignore the file attributes of the file and always read it. If `always` JGit will trust the file attributes and will only read it if a file attribute has changed. `after_open` behaves the same as `always`, but file attributes are only considered *after* the file itself and any transient parent directories have been opened and closed. An open/close of the file/directory is known to refresh its file attributes, at least on some NFS clients. |
64
+
|`core.trustStat`|`always`|⃞| Global option to configure whether to trust file attributes (Java equivalent of stat command on Unix) of files storing git objects. Can be overridden for specific files by configuring `core.trustLooseRefStat, core.trustPackedRefsStat, core.trustLooseObjectStat, core.trustPackStat,core.trustTablesListStat`. If `never` JGit will ignore the file attributes of the file and always read it. If `always` JGit will trust the file attributes and will only read it if a file attribute has changed. `after_open` behaves the same as `always`, but file attributes are only considered *after* the file itself and any transient parent directories have been opened and closed. An open/close of the file/directory is known to refresh its file attributes, at least on some NFS clients. |
64
65
|`core.worktree`| Root directory of the working tree if it is not the parent directory of the `.git` directory |✅| The path to the root of the working tree. |
65
66
66
67
## __fetch__ options
@@ -134,6 +135,13 @@ Proxy configuration uses the standard Java mechanisms via class `java.net.ProxyS
134
135
|`pack.window`|`10`|✅| Number of objects to try when looking for a delta base per thread searching for deltas. |
135
136
|`pack.windowMemory`|`0` (unlimited) |✅| Maximum number of bytes to put into the delta search window. |
136
137
138
+
## reftable options
139
+
140
+
| option | default | git option | description |
141
+
|---------|---------|------------|-------------|
142
+
|`reftable.autoRefresh`|`false`|⃞| Whether to auto-refresh the reftable stack if it is out of date. |
0 commit comments