[펌][Git] git pull remote: HTTP Basic: Access denied
협업/Git / 2020. 1. 28. 13:43
갑자기 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
[출처] https://wrjeoung.tistory.com/43
반응형
'협업 > Git' 카테고리의 다른 글
[SourceTree] Tag 이름과 Branch 이름이 같으면 Push 할 때 Error (0) | 2021.01.21 |
---|---|
[Bug] Sourcetree 3.3.6 Refresh issue (0) | 2020.01.30 |
[펌] Unity, Git을 연동했을 때 dll 파일이 tracking되지 않는 문제 해결 (0) | 2020.01.14 |
[펌] [GitLab] You are not allowed to push code to protected branches on this project (0) | 2019.07.12 |
[펌] sourcetree 비밀번호 저장 안되는 이슈 mac (0) | 2018.12.27 |