Hello, I had a problem. Hang when trying to do 'git push'. The following sequence of actions.
git init --bare C:/Repo/egg.git git daemon --verbose --enable=receive-pack --base-path=C:/Repo --export-all C:/Repo/egg.git --detach --syslog In another folder: git clone git://localhost/egg.git ok. Making changes: touch readme.txt git add readme.txt git commit -m "first commit" git push ... In another folder demon console log: [2236] Connection from 127.0.0.1:3044 [2236] Extended attributes (16 bytes) exist <host=localhost> [2236] Request receive-pack for '/egg.git' In what could be the problem? --
