Tool
github에서 아이디 패스워드 없이 저장소 접근하는 방법 - netrc
'김용환'
2017. 9. 4. 20:35
rsa 키가 아니라 .netrc를 사용하더라도 github의 아이디와 패스워드 없이 접근할 수 있다.
$ cat .netrc
machine github.com
login x11
암호화되지 않는 형태도 지원한다.
$ cat .netrc
machine github.com
login daniel
password qwerty
참조
https://ec.haxx.se/usingcurl-netrc.html
https://gist.github.com/technoweenie/1072829