2021년 08월 13일 부터 GitHub가 계정 암호 인증 지원을 종료했다.
이제 Token 기반 인증만 지원한다.
저장소를 만들 때마다 검색을 하는 기분이라 글로 정리해두려 한다.
우선 Token을 발급 받아보자.
Settings
- Developer Settings
- Personal access tokens
- Generate new token
저장소와 토큰 연결하기
https://stackoverflow.com/questions/18935539/authenticate-with-github-using-a-token
매번 이 레퍼런스를 참고해서 연결했다.
편한 걸로 연결하면 될 것 같다.
$ git remote add origin https://{username}:{your_token}@github.com/{username}/{repo}.git
$ git clone https://github.com/{username}/{repo}.git
Username: {your_token}
Password: