我正在使用局域网访问我的中央存储库中的文件。
我创建了一个裸存储库来存储我的文件,我使用以下命令启动了一个git守护程序:
> git daemon --verbose --export-all --enable=upload-pack --enable=receive-pack --base-path=d:/
从第二个系统我尝试使用命令
克隆裸存储库$ git clone git://192.168.1.8/bare-repository.git
但它给出了错误,如
$ 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`.
你能帮我解决一下这个错误吗?
答案 0 :(得分:2)
这种类型的错误消息通常与:
相关联