user3619128
user3619128

Reputation: 285

git daemon clone is not working in local area network

I am using a local area network to access the files in my central repository.

System 1

I created a bare repository to store my files in it, I started a git daemon using the following command:

> git daemon --verbose --export-all --enable=upload-pack --enable=receive-pack --base-path=d:/

System 2

From the second system I am trying to clone the bare repository using the command

$ git clone git://192.168.1.8/bare-repository.git

But it gives the error like

$ git clone git://192.168.1.8/bare-repository
Cloning into 'bare-repository'...
remote: Counting objects: 3, done.R
Receiving objects: 100% (3/3), done.
remote: Total 3 (delta 0), reused 0 (delta 0)
fatal: read error: Invalid argument
fatal: error in sideband demultiplexer`.

Can you please help me to solve that error?

Upvotes: 1

Views: 1907

Answers (1)

VonC
VonC

Reputation: 1324977

That type of error message is usually associated with:

Upvotes: 2

Related Questions