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
$
The issue is that this particular distribution of git/curl is lacking pthread. One way to fix it is to use LD_PRELOAD
:
$ LD_PRELOAD=/usr/lib/hpux32/libpthread.so git fetch
Password for 'xxx':
$