1. Git Config 초기화

git config --system --unset credential.helper

2. 다시 설정

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

git config credential.helper store

[2] 전역 적용

git config credential.helper store --global

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

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