2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
|
** care considered distinct. If FALSE files whose names
** differ only in case are the same file. Defaults to
** TRUE for unix and FALSE for Cygwin, Mac and Windows.
**
** clean-glob The VALUE is a comma or newline-separated list of GLOB
** (versionable) patterns specifying files that the "clean" command will
** delete without prompting even when the -force flag has
** not been used. Example: *.a *.lib *.o
**
** clearsign When enabled, fossil will attempt to sign all commits
** with gpg. When disabled (the default), commits will
** be unsigned. Default: off
**
** crnl-glob A comma or newline-separated list of GLOB patterns for
** (versionable) text files in which it is ok to have CR, CR+NL or mixed
|
|
|
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
|
** care considered distinct. If FALSE files whose names
** differ only in case are the same file. Defaults to
** TRUE for unix and FALSE for Cygwin, Mac and Windows.
**
** clean-glob The VALUE is a comma or newline-separated list of GLOB
** (versionable) patterns specifying files that the "clean" command will
** delete without prompting even when the -force flag has
** not been used.
**
** clearsign When enabled, fossil will attempt to sign all commits
** with gpg. When disabled (the default), commits will
** be unsigned. Default: off
**
** crnl-glob A comma or newline-separated list of GLOB patterns for
** (versionable) text files in which it is ok to have CR, CR+NL or mixed
|
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
|
**
** https-login Send login credentials using HTTPS instead of HTTP
** even if the login page request came via HTTP.
**
** ignore-glob The VALUE is a comma or newline-separated list of GLOB
** (versionable) patterns specifying files that the "add", "addremove",
** "clean", and "extra" commands will ignore.
** Example: *.log customCode.c notes.txt
**
** keep-glob The VALUE is a comma or newline-separated list of GLOB
** (versionable) patterns specifying files that the "clean" command will
** keep.
**
** localauth If enabled, require that HTTP connections from
** 127.0.0.1 be authenticated by password. If
** false, all HTTP requests from localhost have
** unrestricted access to the repository.
**
** main-branch The primary branch for the project. Default: trunk
|
|
|
|
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
|
**
** https-login Send login credentials using HTTPS instead of HTTP
** even if the login page request came via HTTP.
**
** ignore-glob The VALUE is a comma or newline-separated list of GLOB
** (versionable) patterns specifying files that the "add", "addremove",
** "clean", and "extra" commands will ignore.
** Example: *.a *.lib *.o *.log
**
** keep-glob The VALUE is a comma or newline-separated list of GLOB
** (versionable) patterns specifying files that the "clean" command will
** keep. Example: *.log customCode.c notes.txt
**
** localauth If enabled, require that HTTP connections from
** 127.0.0.1 be authenticated by password. If
** false, all HTTP requests from localhost have
** unrestricted access to the repository.
**
** main-branch The primary branch for the project. Default: trunk
|