반응형
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
반응형
'CS > GIT' 카테고리의 다른 글
[GIT].DS_Store 제거하기 (0) | 2022.01.13 |
---|---|
[GIT]ssh: connect to host github.com port 22: Connection refused (0) | 2021.11.22 |
[Git] Troubleshooting: ! [rejected] master -> master (fetch first) (0) | 2021.11.17 |
[Git]Troubleshooting: git permission denied (publickey) (0) | 2021.11.17 |
[GIT]파이썬 가상환경 설정 venv (0) | 2021.11.10 |