Git

[Git] git pull remote: HTTP Basic: Access denied

개미맨 2019. 5. 7. 00:30

갑자기 git pull을 하는데 다음과 같은 메세지가 출력되며 소스를 다운받지 못하는 문제가 발생되었다.

remote: HTTP Basic: Access denied

fatal: Authentication failed for 'https://gitlab.com'/<project name>

 

 

해결법 : 계정정보 패스워드 설정을 초기화 하고 다시 입력해 준다.

$git config --system --unset credential.helper

reference - 

https://stackoverflow.com/questions/47860772/gitlab-remote-http-basic-access-denied-and-fatal-authentication

 

$git config --system --unset credential.helper 커맨드를 입력하면 계속 account와 password를 물어본다.

귀찮으니 해당폴더에서 $git config credential.helper store 를 입력하면 한번 인증 후 다시 물어보지 않는다.

자세한 내용은 더 검색해봐야함....

reference - https://www.hahwul.com/2018/08/git-credential-helper.html