출처 : https://pinedance.github.io/blog/2019/05/29/Git-Credential

 

 

Git Credential / store

사용자이름과 암호 같은 인증정보를 Disk에 저장하고 계속 유지하고 싶을 때도 있다. 이 때는 credential.helper를 store로 지정한다. 아래와 같이 옵션을 수정해 주면 한 번 로그인 된 정보는 자동으로 저장되어 다음부터 묻지 않는다. 로그인 정보는 ~/.git-credentials에 저장되게 된다.

# git config 업데이트
git config --global credential.helper store
# git config --global --list
# ☞ credential.helper=store
Posted by 요지
,