Disable Password for Private Github Repo
Page content
github가 제공하는 private repository를 사용하니 ID와 암호를 매번 물어보길래 찾아 보니 이렇게 해결할 수 있다고.
source : How do I avoid the specification of the username and password at every git push?
$ git config credential.helper store
$ git push https://github.com/repo.git
Username for 'https://github.com': <USERNAME>
Password for 'https://USERNAME@github.com': <PASSWORD>
To set the timeout for “not-asking password”
git config --global credential.helper 'cache --timeout 7200'