| 1 | help.browser:: |
| 2 | Specify the browser that will be used to display help in the |
| 3 | 'web' format. See linkgit:git-help[1]. |
| 4 | |
| 5 | help.format:: |
| 6 | Override the default help format used by linkgit:git-help[1]. |
| 7 | Values 'man', 'info', 'web' and 'html' are supported. 'man' is |
| 8 | the default. 'web' and 'html' are the same. |
| 9 | |
| 10 | help.autoCorrect:: |
| 11 | If git detects typos and can identify exactly one valid command similar |
| 12 | to the error, git will try to suggest the correct command or even |
| 13 | run the suggestion automatically. Possible config values are: |
| 14 | - 0, "false", "off", "no", "show": show the suggested command (default). |
| 15 | - 1, "true", "on", "yes", "immediate": run the suggested command |
| 16 | immediately. |
| 17 | - positive number > 1: run the suggested command after specified |
| 18 | deciseconds (0.1 sec). |
| 19 | - "never": don't run or show any suggested command. |
| 20 | - "prompt": show the suggestion and prompt for confirmation to run |
| 21 | the command. |
| 22 | |
| 23 | help.htmlPath:: |
| 24 | Specify the path where the HTML documentation resides. File system paths |
| 25 | and URLs are supported. HTML pages will be prefixed with this path when |
| 26 | help is displayed in the 'web' format. This defaults to the documentation |
| 27 | path of your Git installation. |