공유 소스 관리/Git
[GIT] PULL, PUSH시 ID, PASSWORD 최초 한번만 쓰기
밍글링글링
2022. 5. 20. 21:34
728x90
DEFAULT 15분 동안 인증정보를 유지한다.
git config --global credential.helper cache
아래의 명령어는 시간을 연장하는 방법이다
git config credential.helper 'cache --timeout=300'
~/.git-credentials 에 저장하여서 계속 인증정보가 유지된다.
git config --global credential.helper store
728x90