Git Daemon on linux?
- by bwawok
Trying to set up a simple git-daemon on a linux server, and talk to it from a windows box.
On linux server:
Make a folder /home/foo/bar
CD to /home/foo/bar
do a git --bare init here
Do a touch git-daemon-export-ok
CD to /home/foo
Run the command git-daemon --verbose --reuseaddr --base-path=/home/foo --enable=receive-pack
On Windows Client…