diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-10-21 16:26:42 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-10-21 16:26:42 -0700 |
commit | f7bff60de95951d2c82601350cb3771b347e83ee (patch) | |
tree | 5c0e747a86d4990b4e5b7176cec670de620dabe8 /daemon.c | |
parent | Merge branch 'mg/fix-build-remote-helpers' into maint (diff) | |
parent | Fix {update,checkout}-index usage strings (diff) | |
download | tgif-f7bff60de95951d2c82601350cb3771b347e83ee.tar.xz |
Merge branch 'sn/doc-opt-notation' into maint
* sn/doc-opt-notation:
Fix {update,checkout}-index usage strings
Put a space between `<' and argument in pack-objects usage string
Remove stray quotes in --pretty and --format documentation
Use parentheses and `...' where appropriate
Fix odd markup in --diff-filter documentation
Use angles for placeholders consistently
Diffstat (limited to 'daemon.c')
-rw-r--r-- | daemon.c | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -20,15 +20,15 @@ static int reuseaddr; static const char daemon_usage[] = "git daemon [--verbose] [--syslog] [--export-all]\n" -" [--timeout=n] [--init-timeout=n] [--max-connections=n]\n" -" [--strict-paths] [--base-path=path] [--base-path-relaxed]\n" -" [--user-path | --user-path=path]\n" -" [--interpolated-path=path]\n" -" [--reuseaddr] [--detach] [--pid-file=file]\n" -" [--[enable|disable|allow-override|forbid-override]=service]\n" -" [--inetd | [--listen=host_or_ipaddr] [--port=n]\n" -" [--user=user [--group=group]]\n" -" [directory...]"; +" [--timeout=<n>] [--init-timeout=<n>] [--max-connections=<n>]\n" +" [--strict-paths] [--base-path=<path>] [--base-path-relaxed]\n" +" [--user-path | --user-path=<path>]\n" +" [--interpolated-path=<path>]\n" +" [--reuseaddr] [--detach] [--pid-file=<file>]\n" +" [--(enable|disable|allow-override|forbid-override)=<service>]\n" +" [--inetd | [--listen=<host_or_ipaddr>] [--port=<n>]\n" +" [--user=<user> [--group=<group>]]\n" +" [<directory>...]"; /* List of acceptable pathname prefixes */ static char **ok_paths; |