Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/git/24.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
“为什么?”;git fetch";在带有“的HTTPS URL上失败”;“功能不可用”;在HP-UX上?_Git_Curl_Hp Ux - Fatal编程技术网

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

“为什么?”;git fetch";在带有“的HTTPS URL上失败”;“功能不可用”;在HP-UX上?,git,curl,hp-ux,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 $ 问题是git/curl的这个特定发行版缺少pthread。修复它的一种方法是使用LD\u PRELOAD: $ LD_PRELOAD=/usr/lib/hpux32/l

当我运行
git fetch
时,我得到以下信息:

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

问题是git/curl的这个特定发行版缺少pthread。修复它的一种方法是使用
LD\u PRELOAD

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

问题是git/curl的这个特定发行版缺少pthread。修复它的一种方法是使用
LD\u PRELOAD

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

对我来说,最后这个问题是由于
无法分配内存
,内存不足问题造成的


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

对于我来说,这个问题最终是由
无法分配内存
,内存不足问题造成的

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