DevOps/GitLab
Git Password 저장 방법
yscho03
2022. 5. 18. 09:46
728x90
반응형
Credential 정보 저장
credential 정보를 저장하여 반영구적으로 인증 절차가 생략된다.
git config credential.helper store
--global 옵션을 설정하여 모든 프로젝트에 적용할 수 있다.
git config --global credential.helper store
Cache 저장
임시로 저장할때 사용한다. 기본적으로 15분 동안 인증 절차를 요구하지 않는다.
git config credential.helper cache
timeout 옵션으로 지정이 가능하다. (초 단위)
git config credential.helper 'cache --timeout=3600'
참고
728x90
반응형