GIT - 获得“早期 eof”拉动时出错
我想我已经厌倦了 GIT - 我不断收到这些晦涩的错误,但没有任何迹象表明错误发生在哪里或为什么。
最后一个是在 GIT 版本 1.7.2.3 的 cygwin 端拉动的 - 我收到一条“early eof”消息,然后它就不再继续了。
存储库场景是:
MAC-工作存储库 MAC - 作为中央存储的裸存储库。 WIN - 工作存储库
我正在推送到裸存储库并从中提取。
我尝试重新初始化一个裸存储库并再次从 Mac 端推送到它。在Win端仍然出现错误。
没有迹象表明是什么导致了早期的 eof,但我在 Mac 端添加的最后一件事是一些 .dylib 和链接。
任何想法表示赞赏。
I think I'm about fed up with GIT - I keep getting these obscure errors with no indication as to where or why.
This last is on a pull on a cygwin side with GIT version 1.7.2.3 - I get an 'early eof' message and then it won't go any more.
The repository scenario is:
MAC - working repository
MAC - bare repository serving as a central store.
WIN - working repository
I'm pushing to the bare repository and pulling from it.
I've tried re-initializing a bare repository and pushing to it, again from the Mac side. Still get the error on the Win side.
There is no indication what is causing the early eof, but the last thing I added on the Mac side were some .dylibs and links.
Any thoughts appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一位同事在尝试拉取本地 Windows 计算机时遇到了此错误,结果证明这根本不是网络问题。 git reset --hard 解决了这个问题。
A coworker just hit this errror while attempting to pull to his local windows machine, and it turned out not to be a network issue at all.
git reset --hard
fixed the issue.