갑자기 git pull을 하는데 다음과 같은 메세지가 출력되며 소스를 다운받지 못하는 문제가 발생되었다.
remote: HTTP Basic: Access denied
fatal: Authentication failed for 'https://gitlab.com'/<project name>
해결법 : 계정정보 패스워드 설정을 초기화 하고 다시 입력해 준다.
$git config --system --unset credential.helper
reference -
$git config --system --unset credential.helper 커맨드를 입력하면 계속 account와 password를 물어본다.
귀찮으니 해당폴더에서 $git config credential.helper store 를 입력하면 한번 인증 후 다시 물어보지 않는다.
자세한 내용은 더 검색해봐야함....
reference - https://www.hahwul.com/2018/08/git-credential-helper.html
'Git' 카테고리의 다른 글
repo mirror 설정 (0) | 2020.07.28 |
---|---|
[Git] conflict 발생 시나리오 (0) | 2019.09.28 |
[Git] Linux 에서 repo스크립트 다운로드 할 원격지 설정 (0) | 2019.04.23 |
[Git] git 특정 버전 다운로드 (Linux) (0) | 2019.04.18 |
[Git] git merge conflict ( git checkout branch ) (0) | 2019.04.09 |