From 84c47ff9e7a2f09d7495dda6f430169f76528fe1 Mon Sep 17 00:00:00 2001 From: iProbe Date: Mon, 29 Apr 2024 15:56:08 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20Git/git=E5=BC=82=E5=B8=B8?= =?UTF-8?q?=E5=A4=84=E7=90=86.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Git/git异常处理.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Git/git异常处理.md diff --git a/Git/git异常处理.md b/Git/git异常处理.md new file mode 100644 index 0000000..6945501 --- /dev/null +++ b/Git/git异常处理.md @@ -0,0 +1,18 @@ +### 1.GnuTLS recv error (-110) +```text +fatal: unable to access 'https://github.com/xxx/xxx.git/': GnuTLS recv error (-110): The TLS connection was non-properly terminated. +``` +处理 +```shell +apt update +apt install git +``` +### 2.gnutls_handshake() failed: Error in the pull function +```text +fatal: unable to access 'https://github.com/xxx/xxx.git/': gnutls_handshake() failed: Error in the pull function. +``` +处理 +```shell +apt update +apt -y install build-essential nghttp2 libnghttp2-dev libssl-dev +``` \ No newline at end of file