git-svn 在 OSX 上死于信号 10

发布于 2024-09-15 02:11:38 字数 480 浏览 11 评论 0原文

我最初在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晨曦慕雪 2024-09-22 02:11:39

我在更新 1.6 CollabNet subversion 二进制文件时遇到了同样的问题。确保您在 ~/.profile 中设置了以下环境变量:

 export PATH=/path/to/svn/bin:....
 export DYLD_LIBRARY_PATH=/path/to/svn/lib:...
 export PERL5LIB=/path/to/svn/lib/svn-perl:...

如果您没有设置所有这些,则更新的库和本机 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:

 export PATH=/path/to/svn/bin:....
 export DYLD_LIBRARY_PATH=/path/to/svn/lib:...
 export PERL5LIB=/path/to/svn/lib/svn-perl:...

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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文