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