Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 759 Bytes

Caching_your_GitHub_credentials_in_Git.md

File metadata and controls

29 lines (20 loc) · 759 Bytes

Caching your GitHub credentials in Git

Git username과 password를 입력하기 귀찮은 나 같은 누군가를 위한 짧은 글

Reference: github docs


1. Turn on credential helper

$ git config --global credential.helper cache
  • credential helper가 입력한 password를 저장해놓는다.
  • default로 15분동안 저장되지만, 변경을 원하면 아래의 명령으로 저장되는 시간을 바꾸면 된다

2. Change the default password cache timeout

 $ git config --global credential.helper 'cache --timeout 3600'
  • An hour - 3600
  • 1 day - 86,400
  • 7 days - 604,800
  • 30 days - 2,592,000