728x90
반응형

2021년 8월 13일 이후로 GitHub.com에서 Git 작업을 인증할 때 더 이상 계정 암호를 허용하지 않으며 token-based authentication이 필요하다고 한다.

* two-factor authentication을 이미 사용 중인 사람이라면 해당 인증 절차 공지사항에 해당이 되지 않는다.

 

따라서 Personal Access Token을 추가해야 하며, 해당 글은 Personal Access Token 생성 및 등록 방법에 대해서 알아본다.

 

개인 액세스 토큰 생성 방법

  • GitHub 접속
  • Profile → Settings → Developer settings → Personal access tokens → Generate new token
  • Access token 생성
    1. Note: 토큰 용도
    2. Select Scopes: 해당 토큰에 부여할 권한 선택
    3. Generate Token: 토큰 생성
  • Personal access token 생성 완료 확인, 보관
    ※ 나중에 다시 확인할 수 없으니 반드시 따로 보관해야 한다.

 

운영체제에 맞게 적용시키기

  • Windows OS
    제어판 - 자격 증명 관리자 - Windows 자격 증명 -> git:https://github.com 찾기 -> 편집 -> 암호를 Personal Access Token으로 대체
  • Mac OS
    Keychain access -> github.com -> 인터넷 비밀번호 찾기 -> 암호를 Personal Access Token으로 대체

※ Windows에서 위의 방법으로 해결되지 않으면 자격증명을 삭제 후 재설정하면 된다.


관련 링크

https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/

 

Token authentication requirements for Git operations | The GitHub Blog

Beginning August 13th, 2021, we will no longer accept account passwords when authenticating Git operations on GitHub.com.

github.blog

 

728x90
반응형