반응형
Recent Posts
Recent Comments
관리 메뉴

개발잡부

[Git] Git pull/push 시 Password 물어보지 않도록 설정하기(credential.helper) 본문

Git

[Git] Git pull/push 시 Password 물어보지 않도록 설정하기(credential.helper)

닉의네임 2022. 4. 1. 18:04
반응형

Credential 정보 저장

 

$ git config credential.helper store

 

credential.helper의 store 옵션을 주게되면 해당 git directory에선 반영구적으로 인증 절차가 생략됩니다.(저장된 credential 정보를 이용해 인증 처리)

캐시 저장

 

 $ git config credential.helper cache
반응형

'Git' 카테고리의 다른 글

[git] 자주쓰는 Git 명령어  (0) 2022.01.07
인텔리제이 Cannot Run Git  (0) 2020.03.05
remote: Repository not found.  (0) 2020.03.05
Comments