git-push through git protocol
authorLinus Torvalds <torvalds@osdl.org>
Sun, 21 Jan 2007 19:04:13 +0000 (11:04 -0800)
committerJunio C Hamano <junkio@cox.net>
Sun, 28 Jan 2007 20:31:56 +0000 (12:31 -0800)
This allows pushing over the git:// protocol, and while it's not
authenticated, it could make sense from within a firewalled
setup where nobody but trusted internal people can reach the git
port. git-daemon is possibly easier and faster to set up in the
kind of situation where you set up git instead of CVS inside a
company.

"git-receive-pack" is disabled by default, so you need to enable it
explicitly by starting git-daemon with the "--enable=receive-pack"
command line argument, or by having your config enable it automatically.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
No differences found