목적

명령어

[1] 해당 리포지토리에서만 적용

git config credential.helper store

[2] 전역 적용

git config credential.helper store --global

[3] 일정 시간 동안만 적용 (예시: 1시간)

git config credential.helper 'cache --timeout=3600'

참고 : 저장된 정보 초기화 (관리자 권한 필요)

git config --global --unset credential.helper