@@ -9,15 +9,15 @@ SYNOPSIS
99--------
1010[verse]
1111'git daemon' [--verbose] [--syslog] [--export-all]
12- [--timeout=n ] [--init-timeout=n ] [--max-connections=n ]
13- [--strict-paths] [--base-path=path] [--base-path-relaxed]
14- [--user-path | --user-path=path]
15- [--interpolated-path=pathtemplate]
16- [--reuseaddr] [--detach] [--pid-file=file]
17- [--enable=service] [--disable=service]
18- [--allow-override=service] [--forbid-override=service]
19- [--inetd | [--listen=host_or_ipaddr] [--port=n ] [--user=user [--group=group]]
20- [directory...]
12+ [--timeout=<n> ] [--init-timeout=<n> ] [--max-connections=<n> ]
13+ [--strict-paths] [--base-path=< path> ] [--base-path-relaxed]
14+ [--user-path | --user-path=< path> ]
15+ [--interpolated-path=< pathtemplate> ]
16+ [--reuseaddr] [--detach] [--pid-file=< file> ]
17+ [--enable=< service> ] [--disable=< service> ]
18+ [--allow-override=< service> ] [--forbid-override=< service> ]
19+ [--inetd | [--listen=< host_or_ipaddr> ] [--port=<n> ] [--user=< user> [--group=< group> ]]
20+ [< directory> ...]
2121
2222DESCRIPTION
2323-----------
@@ -48,7 +48,7 @@ OPTIONS
4848 'git daemon' will refuse to start when this option is enabled and no
4949 whitelist is specified.
5050
51- --base-path=path::
51+ --base-path=< path> ::
5252 Remap all the path requests as relative to the given path.
5353 This is sort of "GIT root" - if you run 'git daemon' with
5454 '--base-path=/srv/git' on example.com, then if you later try to pull
@@ -61,7 +61,7 @@ OPTIONS
6161 This is useful for switching to --base-path usage, while still
6262 allowing the old paths.
6363
64- --interpolated-path=pathtemplate::
64+ --interpolated-path=< pathtemplate> ::
6565 To support virtual hosting, an interpolated path template can be
6666 used to dynamically construct alternate paths. The template
6767 supports %H for the target hostname as supplied by the client but
@@ -80,27 +80,27 @@ OPTIONS
8080 Have the server run as an inetd service. Implies --syslog.
8181 Incompatible with --port, --listen, --user and --group options.
8282
83- --listen=host_or_ipaddr::
83+ --listen=< host_or_ipaddr> ::
8484 Listen on a specific IP address or hostname. IP addresses can
8585 be either an IPv4 address or an IPv6 address if supported. If IPv6
8686 is not supported, then --listen=hostname is also not supported and
8787 --listen must be given an IPv4 address.
8888 Incompatible with '--inetd' option.
8989
90- --port=n ::
90+ --port=<n> ::
9191 Listen on an alternative port. Incompatible with '--inetd' option.
9292
93- --init-timeout=n ::
93+ --init-timeout=<n> ::
9494 Timeout between the moment the connection is established and the
9595 client request is received (typically a rather low value, since
9696 that should be basically immediate).
9797
98- --timeout=n ::
98+ --timeout=<n> ::
9999 Timeout for specific client sub-requests. This includes the time
100100 it takes for the server to process the sub-request and the time spent
101101 waiting for the next client's request.
102102
103- --max-connections=n ::
103+ --max-connections=<n> ::
104104 Maximum number of concurrent clients, defaults to 32. Set it to
105105 zero for no limit.
106106
@@ -109,7 +109,7 @@ OPTIONS
109109 --verbose, thus by default only error conditions will be logged.
110110
111111--user-path::
112- --user-path=path::
112+ --user-path=< path> ::
113113 Allow {tilde}user notation to be used in requests. When
114114 specified with no parameter, requests to
115115 git://host/{tilde}alice/foo is taken as a request to access
@@ -129,12 +129,12 @@ OPTIONS
129129--detach::
130130 Detach from the shell. Implies --syslog.
131131
132- --pid-file=file::
132+ --pid-file=< file> ::
133133 Save the process id in 'file'. Ignored when the daemon
134134 is run under `--inetd`.
135135
136- --user=user::
137- --group=group::
136+ --user=< user> ::
137+ --group=< group> ::
138138 Change daemon's uid and gid before entering the service loop.
139139 When only `--user` is given without `--group`, the
140140 primary group ID for the user is used. The values of
@@ -145,16 +145,16 @@ Giving these options is an error when used with `--inetd`; use
145145the facility of inet daemon to achieve the same before spawning
146146'git daemon' if needed.
147147
148- --enable=service::
149- --disable=service::
148+ --enable=< service> ::
149+ --disable=< service> ::
150150 Enable/disable the service site-wide per default. Note
151151 that a service disabled site-wide can still be enabled
152152 per repository if it is marked overridable and the
153153 repository enables the service with a configuration
154154 item.
155155
156- --allow-override=service::
157- --forbid-override=service::
156+ --allow-override=< service> ::
157+ --forbid-override=< service> ::
158158 Allow/forbid overriding the site-wide default with per
159159 repository configuration. By default, all the services
160160 are overridable.
0 commit comments