CS/GIT

[Git] Troubleshooting: remote: HTTP Basic: Access denied fatal: Authentication

뚱요 2021. 11. 21. 00:00
반응형

 

remote: HTTP Basic: Access denied 

fatal: Authentication failed for '깃 주소'

 

해결방법

trial 1. (success) 관리자 권한 실행  후 하단 코드 입력

Mac에서 관리자 권한 실행 방법 포스트 참고 : [Mac] Mac 터미널 관리자 권한 실행하기

git config --system --unset credential.helper

계속해서 계정을 물어보기 때문에 저장하도록 한다.

git config credential.helper store

Git SSL Certificate Problem: Certificate has expired 에러 해결법

해결방법

https repository에 연결할 때 SSL 검증 과정을 안 하도록 만듦.

Trial1(success)

git config --global http.sslVerify false

 

반응형