git 下载错误问题

Ubuntu18.04:gnutls_handshake() failed: Error in the pull function.
克隆GitHub仓库

git clone https://github.com/trekhleb/javascript-algorithms.git --depth=1

出现错误

fatal: unable to access 'https://github.com/trekhleb/javascript-algorithms.git/': gnutls_handshake() failed: Error in the pull function.

错误原因分析:

git使用了libcurl4-gnutls-dev,而在ubuntu18中该库作出了修改,导致git无法使用SSL进行连接。
解决方案:安装依赖包

sudo apt-get -y install build-essential nghttp2 libnghttp2-dev libssl-dev