diff options
Diffstat (limited to 'cgitrc.5.txt')
-rw-r--r-- | cgitrc.5.txt | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/cgitrc.5.txt b/cgitrc.5.txt index 01157a9..c3698a6 100644 --- a/cgitrc.5.txt +++ b/cgitrc.5.txt | |||
@@ -90,7 +90,12 @@ embedded:: | |||
90 | Flag which, when set to "1", will make cgit generate a html fragment | 90 | Flag which, when set to "1", will make cgit generate a html fragment |
91 | suitable for embedding in other html pages. Default value: none. See | 91 | suitable for embedding in other html pages. Default value: none. See |
92 | also: "noheader". | 92 | also: "noheader". |
93 | 93 | ||
94 | enable-commit-graph:: | ||
95 | Flag which, when set to "1", will make cgit print an ASCII-art commit | ||
96 | history graph to the left of the commit messages in the repository | ||
97 | log page. Default value: "0". | ||
98 | |||
94 | enable-filter-overrides:: | 99 | enable-filter-overrides:: |
95 | Flag which, when set to "1", allows all filter settings to be | 100 | Flag which, when set to "1", allows all filter settings to be |
96 | overridden in repository-specific cgitrc files. Default value: none. | 101 | overridden in repository-specific cgitrc files. Default value: none. |
@@ -269,6 +274,14 @@ root-title:: | |||
269 | Text printed as heading on the repository index page. Default value: | 274 | Text printed as heading on the repository index page. Default value: |
270 | "Git Repository Browser". | 275 | "Git Repository Browser". |
271 | 276 | ||
277 | scan-hidden-path:: | ||
278 | If set to "1" and scan-path is enabled, scan-path will recurse into | ||
279 | directories whose name starts with a period ('.'). Otherwise, | ||
280 | scan-path will stay away from such directories (considered as | ||
281 | "hidden"). Note that this does not apply to the ".git" directory in | ||
282 | non-bare repos. This must be defined prior to scan-path. | ||
283 | Default value: 0. See also: scan-path. | ||
284 | |||
272 | scan-path:: | 285 | scan-path:: |
273 | A path which will be scanned for repositories. If caching is enabled, | 286 | A path which will be scanned for repositories. If caching is enabled, |
274 | the result will be cached as a cgitrc include-file in the cache | 287 | the result will be cached as a cgitrc include-file in the cache |
@@ -354,6 +367,10 @@ repo.defbranch:: | |||
354 | repo.desc:: | 367 | repo.desc:: |
355 | The value to show as repository description. Default value: none. | 368 | The value to show as repository description. Default value: none. |
356 | 369 | ||
370 | repo.enable-commit-graph:: | ||
371 | A flag which can be used to disable the global setting | ||
372 | `enable-commit-graph'. Default value: none. | ||
373 | |||
357 | repo.enable-log-filecount:: | 374 | repo.enable-log-filecount:: |
358 | A flag which can be used to disable the global setting | 375 | A flag which can be used to disable the global setting |
359 | `enable-log-filecount'. Default value: none. | 376 | `enable-log-filecount'. Default value: none. |
@@ -450,6 +467,10 @@ css=/css/cgit.css | |||
450 | enable-index-links=1 | 467 | enable-index-links=1 |
451 | 468 | ||
452 | 469 | ||
470 | # Enable ASCII art commit history graph on the log pages | ||
471 | enable-commit-graph=1 | ||
472 | |||
473 | |||
453 | # Show number of affected files per commit on the log pages | 474 | # Show number of affected files per commit on the log pages |
454 | enable-log-filecount=1 | 475 | enable-log-filecount=1 |
455 | 476 | ||