添加 Git/git异常处理.md
This commit is contained in:
parent
a6f870c907
commit
84c47ff9e7
1 changed files with 18 additions and 0 deletions
18
Git/git异常处理.md
Normal file
18
Git/git异常处理.md
Normal file
|
@ -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
|
||||||
|
```
|
Loading…
Add table
Add a link
Reference in a new issue