安装包后显示以下错误

安装包后显示以下错误

[ 安装 fscoiety ]

git clone https://github.com/Manisso/fsociety.git
Cloning into 'fsociety'...
fatal: unable to access 'https://github.com/Manisso/fsociety.git/': 
gnutls_handshake() failed: An unexpected TLS packet was received.

如何修复它?

答案1

如果您使用代理,则必须在 git 中设置全局代理参数。

git config --global http.proxy http://<your_proxy>:<your_port>
git config --global https.proxy https://<your_proxy>:<your_port>

相关内容