이슈

 

git의 id, password를 초기화한 이후 매 pull, push, commit 마다

 

id와 password를 입력해야 하는 번거로운 작업이 추가됐다.

 

 

 

해결책

 

git bash에 git config --global credential.helper store를 입력하여

 

입력한 id와 password를 git credential에 저장한다.

 

git config --global credential.helper store

 

반응형

'Git' 카테고리의 다른 글

[Git] git pull remote: HTTP Basic: Access denied  (0) 2021.04.28

 

이슈

 

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

 

git pull remote: HTTP Basic: Access denied

 

 

원인

 

clone시 계정 입력 과정에서 password를 잘못 입력하여 발생했다.

 

 

 

해결책

 

계정정보 패스워드 설정을 초기화 하고 id와 password를 다시 입력해 준다.

 

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

 

 

반응형

'Git' 카테고리의 다른 글

[Git] git config --global credential.helper store 인증 정보 저장  (0) 2021.04.28

+ Recent posts