vote up 3 vote down star

Hello, Setting up new git installations.

On one Windows laptop, I'm running (under cygwin):

git daemon --base-path=/cygdrive/c/work/proj/

My project's root is c:\work\proj\proj1. There is a c:\work\proj\proj1\.git directory.
git-daemon-export-ok exists in c:\work\proj\proj1. (git-daemon-export-ok can be an empty file, yes?)

On another Windows computer, on the same local network, I've tried many variations of this (under cygwin):

git clone git://xx.xx.xx.xx/proj1

I expect that the daemon will append 'proj1' to the base-path and do the right thing.

On the server I see:

5728] '/cygdrive/c/work/proj/proj1/.git': repository not exported.

On the client I see:

$ git clone git://xx.xx.xx.xx/proj1
Initialized empty Git repository in /cygdrive/c/work/proj/proj1/.git/  
fatal: The remote end hung up unexpectedly

What am I doing wrong?
TIA...

flag

56% accept rate

1 Answer

vote up 4 vote down check

You need to create the git-daemon-export-ok file in the .git directory. Don't commmit it into the repository along with your code, but just create an empty file with that name along with the branches, hooks, info, etc. directories.

link|flag
Or use git clone --bare – gahooa Jul 11 at 1:12
1  
Thanks. The key is putting git-daemon-export-ok in the .git dir, not the parent dir. – Number8 Jul 11 at 1:15
2  
Or use --export-all option to git-daemon – Jakub NarÄ™bski Jul 11 at 10:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.