我在 Windows 7 上安装了 bonobo git 服务器。
我通过那个倭黑猩猩创建了一个新的存储库“SFK”。
然后我克隆成这样:
git clone http://localhost/Bonobo.Git.Server/SFK.git
git add "trans.cs"
git commit -m "added"
git push http://localhost/Bonobo.Git.Server/SFK.git
一切正常。
位当我尝试使用
git pull http://localhost/Bonobo.Git.Server/SFK.git
它给出了这个错误
fatal:
Couldn't find remote ref HE
Unexpected end of command stream
我哪里错了?我是这个 git 和 bonobo 的新手。请建议如何纠正这个问题。
更新:
我在推后试过这个。
git config --global pull.default current
git config --global push.default current
有效。