git-svn 在 OSX 上死于信号 10
我最初在 SuperUser 上问了这个问题,但看起来像我更有可能在这里得到答案。我通过 Fink 安装了 git 和 git-svn。我尝试执行以下操作:
$ git svn init http://myserver/myrepo
Initialized empty Git repository in checkout/.git/
$ git svn fetch
error: git-svn died of signal 10
为什么 git-svn 失败?我该如何解决这个问题?我已经通过 vanilla SVN 签出了该存储库,因此不应该有任何访问或权限问题。
I asked this question originally on SuperUser, but it looks like I'm much more likely to get an answer here. I have git and git-svn installed via Fink. I try to do the following:
$ git svn init http://myserver/myrepo
Initialized empty Git repository in checkout/.git/
$ git svn fetch
error: git-svn died of signal 10
Why is git-svn failing? How can I fix this? I have the repo already checked out via vanilla SVN, so there shouldn't be any access or permissions issues.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在更新 1.6 CollabNet subversion 二进制文件时遇到了同样的问题。确保您在 ~/.profile 中设置了以下环境变量:
如果您没有设置所有这些,则更新的库和本机 Leopard 库以及git-svn之间会存在一些不匹配将会失败。
或者你还在使用 Leopard 自带的原生 subversion 1.5 吗?
I was running into the same problem with updated 1.6 CollabNet subversion binaries. Make sure you have the following environment variables set in ~/.profile:
If you don't set all these, there will be some mismatch between your updated libs and the native Leopard libs, and git-svn will fail.
Or are you still using the native subversion 1.5 that came with Leopard?