git pull 땡길때마다 귀찮은 Git 인증 매번 안 하기

728x90

일단 한번 git push 하거나 pull 땡길때 로그인 정보 받으면 그 뒤에

git config credential.helper store

그리고 다른 모든 git 폴더에서도 똑같이 쓰려면

git config credential.helper store --global

 

그런데 일시적으로만 하고 싶다? ( 1시간 )

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