当我运行git fetch
时,我得到以下内容:
$ git fetch
Password for 'xxx':
error: cannot create thread: Function is not available
fatal: cannot start thread to parse advertised refs
$
答案 0 :(得分:4)
问题是git / curl的这种特殊分布缺乏pthread。解决此问题的一种方法是使用LD_PRELOAD
:
$ LD_PRELOAD=/usr/lib/hpux32/libpthread.so git fetch
Password for 'xxx':
$
答案 1 :(得分:0)
对我来说,最后这个问题是由Cannot allocate memory
引起的,内存不足问题。
所以请检查一下。希望它有所帮助。