git daemon fails to show appeared repository
Posted
by Zubair
on Stack Overflow
See other posts from Stack Overflow
or by Zubair
Published on 2010-03-29T13:03:15Z
Indexed on
2010/03/29
15:33 UTC
Read the original article
Hit count: 282
git
I set up .git in a directory on my local machine. I then run:
mkdir a
cd a
git init
git daemon
: then I create another directory b:
mkdir b
cd b
git clone git://127.0.0.1
: and I get the following error:
Initialized empty Git repository in /b/127.0.0.1/.git/
fatal: The remote end hung up unexpectedly
: Any idea why?
© Stack Overflow or respective owner