1

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?

Florian Neumann
  • 5,587
  • 1
  • 39
  • 48
user3619128
  • 285
  • 1
  • 5
  • 12

1 Answers1

2

That type of error message is usually associated with:

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250