250e93974044ba678b29db013f2d964c7b6510c5
   1git-daemon(1)
   2=============
   3
   4NAME
   5----
   6git-daemon - A really simple server for GIT repositories.
   7
   8SYNOPSIS
   9--------
  10'git-daemon' [--verbose] [--inetd | --port=n]
  11
  12DESCRIPTION
  13-----------
  14A really simple TCP git daemon that normally listens on port "DEFAULT_GIT_PORT"
  15aka 9418. It waits for a connection, and will just execute "git-upload-pack"
  16when it gets one.
  17
  18It's careful in that there's a magic request-line that gives the command and
  19what directory to upload, and it verifies that the directory is ok.
  20
  21It verifies that the directory has the magic file "git-daemon-export-ok", and
  22it will refuse to export any git directory that hasn't explicitly been marked
  23for export this way.
  24
  25This is ideally suited for read-only updates, ie pulling from git repositories.
  26
  27OPTIONS
  28-------
  29--inetd::
  30        Have the server run as an inetd service.
  31
  32--port::
  33        Listen on an alternative port.
  34
  35--verbose::
  36        Log details about the incoming connections and requested files.
  37
  38Author
  39------
  40Written by Linus Torvalds <torvalds@osdl.org> and YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
  41
  42Documentation
  43--------------
  44Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
  45
  46GIT
  47---
  48Part of the gitlink:git[7] suite
  49