Git username과 password를 입력하기 귀찮은 나 같은 누군가를 위한 짧은 글
Reference: github docs
$ git config --global credential.helper cache
- credential helper가 입력한
password
를 저장해놓는다. - default로 15분동안 저장되지만, 변경을 원하면 아래의 명령으로 저장되는 시간을 바꾸면 된다
$ git config --global credential.helper 'cache --timeout 3600'
- An hour - 3600
- 1 day - 86,400
- 7 days - 604,800
- 30 days - 2,592,000