Created
October 13, 2024 14:34
-
-
Save kaichao/3a8e1e38347e27f59eab63a43b20d224 to your computer and use it in GitHub Desktop.
WSL-ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Cannot git-clone from github | |
```bash | |
git clone https://github.com/kaichao/app-mwa.git | |
Cloning into 'app-mwa'... | |
fatal: unable to access 'https://github.com/kaichao/app-mwa.git/': GnuTLS recv error (-110): The TLS connection was non-properly terminated. | |
``` | |
```sh | |
apt-get install -y gnutls-bin | |
git config --global http.sslVerify false | |
git config --global http.postBuffer 1048576000 | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment