2

When I run git fetch I get the following:

$ git fetch
Password for 'xxx':
error: cannot create thread: Function is not available
fatal: cannot start thread to parse advertised refs
$
4

2 回答 2

4

问题是 git/curl 的这种特殊分布缺少 pthread。解决它的一种方法是使用LD_PRELOAD

$ LD_PRELOAD=/usr/lib/hpux32/libpthread.so git fetch
Password for 'xxx':
$
于 2013-04-18T13:56:41.723 回答
0

对我来说,最后这个问题是由Cannot allocate memory低内存问题引起的。

所以请检查一下。希望能帮助到你。

于 2014-05-21T03:11:31.573 回答