본문 바로가기

개발/GIT

Support for password authentication was removed on August 13

8월 13일 부로 push, clone, pull 시 비밀번호 대신 토큰을 사용하게 변경 되었기 때문에 git push시 아래와 같은 에러가 발생한다.

Support for password authentication was removed on August 13

 

mac에서는 아래 링크대로 하면 해결된다.

 

요약하자면, 

1. github -> profile -> Developer settings -> personal access tokens -> Generate new token -> 토큰 생성

2. 토큰을 복사해서 keychain을 열고 github.com 암호를 복사한 토큰으로 update

3. 터미널에서 git push

 

https://whatibroke.com/2021/08/14/support-for-password-authentication-was-removed-on-august-13-2021-please-use-a-personal-access-token-instead-fix-for-mac/

 

Support for password authentication was removed on August 13, 2021. Please use a personal access token instead – Fix for Mac

Hey everyone, If you’re like me and a bit slack with your personal projects you might’ve started receiving the following error today: admin@Admins-iMac ui % git push remote: Support for…

whatibroke.com

 

이제 git도 쉽지 않아...개발자 은퇴각이다

 

 

[추가]

그래도 안 된다. 예를 들면 키체인에 github.com이 없다 등등...

그럴땐 아래와 같이 연결하면 된다.

git add remote https://계정이름:토큰비밀번호@저장소 주소

 

'개발 > GIT' 카테고리의 다른 글

Fast Foward Merge 되돌리기  (0) 2022.09.08
remote: Repository not found.  (0) 2021.02.16
Rebase  (0) 2019.07.15
로컬 git reset --hard 후 리모트에 push 하기  (0) 2019.04.10