GitHub Token으로 인증하기

uoayop·2021년 9월 9일
1

Git

목록 보기
5/6
post-thumbnail

2021년 08월 13일 부터 GitHub가 계정 암호 인증 지원을 종료했다.
이제 Token 기반 인증만 지원한다.

  • PAT(Personal Access Token), OAuth, SSH Key, GitHub App Token 등

저장소를 만들 때마다 검색을 하는 기분이라 글로 정리해두려 한다.

우선 Token을 발급 받아보자.

  • github 우측 상단 프로필 - 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:
profile
slow and steady wins the race 🐢

0개의 댓글