2022-09-14

[개발노트][트러블슈팅] git clone이 안될때


갑자기 아래의 오류와 함께 git이 안될때...

Git: Fatal:Unsupported SSL backend 'openssl'. Supported SSL backends: gnutls


wget https://curl.haxx.se/ca/cacert.pem

mv cacert.pem ~/.ssh

git config --global http.sslBackend "openssl"

git config --global http.sslCAInfo ~/.ssh/cacert.pem

git config --global --unset http.sslBackend


댓글 없음:

댓글 쓰기

How to Convert EUC-KR Source Code to UTF-8

How to Convert EUC-KR Source Code to UTF-8 I found old STM32 firmware code. The files were in EUC-KR encoding. This is an old Korean text f...