리셋 되지 말자

git clone CAfile error 본문

Git

git clone CAfile error

kyeongjun-dev 2022. 8. 13. 19:37

에러내용

$ git clone https://github.com/Something.git
Cloning into 'Something'...
fatal: unable to access 'Something.git/': error setting certificate verify locations:
  CAfile: C:/Git/mingw64/ssl/certs/ca-bundle.crt
  CApath: none

해결방법

git config --global http.sslverify "false"

'Git' 카테고리의 다른 글

스크립트 파일에 실행권한 추가하여 올리기  (0) 2021.09.10
모든 커밋에 대한 특정 파일 삭제하기  (0) 2021.05.21
git checkout -t 브랜치명  (0) 2021.05.04
인터렉티브 rebase 주의  (0) 2021.03.12
detached HEAD 해결  (2) 2021.03.12
Comments