git-daemon

Why won't git-daemon serve my repository?

I set up .git in a directory on my local machine. I then run: mkdir a cd a git init git daemon When I attempt to clone the repository in a, I get the following error: mkdir b cd b git clone git://127.0.0.1 Initialized empty Git repository in /b/127.0.0.1/.git/ fatal: The remote end hung up unexpectedly How can I clone my repository o...

As of right now, on Windows 7, does Mercurial start up a server much simpler than Git?

On Windows 7, from reading hginit.com, it seems like it is very easy to set up a Mercurial server? mkdir repo cd repo hg init hg serve and that's it? Now http://localhost:8000 is the server. It seems that it is quite a bit harder to set a Git server up, either for Cygwin and mysysGit? Git for sure will make it simpler, maybe just n...

Unable to push to git Repository. It hangs after "Writing Objects: 100%"

I am running git daemon with the following command. c:\cygwin\bin\git daemon --reuseaddr --base-path=/cygdrive/S --export-all --verbose --enable=receive-pack I am able to clone and pull updates but when I try to push I get $ git push origin master Counting objects: 6, done. Delta compression using up to 2 threads. Compressing objec...