为什么在HP-UX上“功能不可用”的HTTPS URL上“git fetch”失败?

时间:2013-04-18 13:56:42

标签: git curl hp-ux

当我运行git fetch时,我得到以下内容:

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

2 个答案:

答案 0 :(得分:4)

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

$ LD_PRELOAD=/usr/lib/hpux32/libpthread.so git fetch
Password for 'xxx':
$

答案 1 :(得分:0)

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

所以请检查一下。希望它有所帮助。