1. GIT CLI 사용 시 로그인 계정 저장하기

 1) git config credential.helper store

      -> 입력 후 push하여 로그인 인증하면 다음부터 반영구적으로 로그인 유지

 

 2) git config credential.helper store --global

      -> 입력 후 push하여 로그인 인증하면 다음부터 모든 프로젝트에서 반영구적으로 로그인 유지

 

 3) git config credential.helper cache

      -> 입력 후 push하여 로그인 인증하면 다음부터 일정 시간 동안 로그인 유지(기본 15분)

 

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

      -> 입력 후 push하여 로그인 인증하면 다음부터 직접 지정한 일정시간(초 단위) 동안 로그인 유지

+ Recent posts