[Trouble Shooting] remote: Password authentication is temporarily disabled as part of a brownout. Please use a personal access token instead 해결
문제 상황
git push
명령이 실행되지 않음.
해결 방법
1. 깃허브에서 토큰 생성하기
깃허브에서 Settings 클릭
Developer settings 클릭
Personal access tokens 클릭
Generate new token 클릭
Token 설정
Generate token 클릭
🌟Generate token을 클릭한 뒤, 창을 나가지 말고 토큰을 복사해야한다!!!
2. Mac KeyChain 삭제
cmd + space
를 누른 뒤, keychain을 검색한다.
‘키체인 접근’에 들어가 github.com을 검색한다.
우측에, 키체인이 ‘로그인’이라고 된 항목을 삭제한다.
3. 터미널에서 user 정보 입력
$ git config --global user.name "username"
$ git config --global user.email "email@email.com"
이때, email은 깃허브에 등록된 이메일로 입력한다.
4. 마무리
git commit 후 git push를 하면 Username과 Password를 입력하라고 나온다.
Username에는 깃허브 아이디를 입력하고,
🌟Password에는 아까 복사했던 Personal access token을 입력한다.
Ref.
💛 개인 공부 기록용 블로그입니다. 👻