実行する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 がないことです。それを修正する 1 つの方法は、次を使用することですLD_PRELOAD
。
$ LD_PRELOAD=/usr/lib/hpux32/libpthread.so git fetch
Password for 'xxx':
$
私にとって、最終的にこの問題はCannot allocate memory
、メモリ不足の問題が原因でした。
Plsはそれをチェックしてください。それが役に立てば幸い。