Skip to content

Commit

Permalink
Merge branch 'sb/daemon'
Browse files Browse the repository at this point in the history
* sb/daemon:
  daemon.c: minor style fixup
  git-daemon: rewrite kindergarden, new option --max-connections
  git-daemon: Simplify dead-children reaping logic
  git-daemon: use LOG_PID, simplify logging code
  git-daemon: call logerror() instead of error()
  • Loading branch information
Junio C Hamano committed Aug 30, 2008
2 parents 445cac1 + 460c201 commit ff1e8bf
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 197 deletions.
9 changes: 7 additions & 2 deletions Documentation/git-daemon.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ SYNOPSIS
--------
[verse]
'git daemon' [--verbose] [--syslog] [--export-all]
[--timeout=n] [--init-timeout=n] [--strict-paths]
[--base-path=path] [--user-path | --user-path=path]
[--timeout=n] [--init-timeout=n] [--max-connections=n]
[--strict-paths] [--base-path=path] [--base-path-relaxed]
[--user-path | --user-path=path]
[--interpolated-path=pathtemplate]
[--reuseaddr] [--detach] [--pid-file=file]
[--enable=service] [--disable=service]
Expand Down Expand Up @@ -99,6 +100,10 @@ OPTIONS
it takes for the server to process the sub-request and time spent
waiting for next client's request.

--max-connections::
Maximum number of concurrent clients, defaults to 32. Set it to
zero for no limit.

--syslog::
Log to syslog instead of stderr. Note that this option does not imply
--verbose, thus by default only error conditions will be logged.
Expand Down
Loading

0 comments on commit ff1e8bf

Please sign in to comment.