Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- codingtest
- 네트워크와 분산 시스템
- GCP PubSub
- chapter8
- heap
- 브라우저 JSON encoding
- Algorithm
- 연습문제
- 물리 메모리 관리
- CloudFunction
- 스프링 APPLICATION_JSON_UTF8
- github 403
- chapter7
- 요리책
- 알고리즘
- 문제 풀이
- github push 403
- 요리책 운영체제
- github personal access token
- 운영체제
- CPU 스케줄링
- Java
- 코딩테스트
- PubSub
- JSON UTF-8
- 가상 메모리 기초
- JSON encoding
- github access token
- 브라우저 JSON 인코딩
- Python
Archives
- Today
- Total
이도(李裪)
GitHub 403 Error. Access Token 설정 방법 본문
github에 push 하는데 403 에러와 다음 에러 메시지가 나타났습니다
password 인증 방식에서 access token 방식으로 변경되었다라는 내용입니다
에러메시지
remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
remote: Please see
https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/
for more information.
unable to access 'https://github.com/{userId}/{repository}': The requested URL returned error: 403
해결방법
1. https://github.com/settings/tokens 에서 "Generate new token"을 클릭합니다
2. 이름(목적)과 기간(Expiration), 권한을 선택해서 access token을 생성합니다
3. 만들어진 access token을 꼭!!! 복사합니다. access token은 한 번만 보여지고 복사 못 하시면 새로 다시 만들어야합니다.
4. Keychain Access에 들어가셔서 위에 복사한 access token을 넣어줍니다
5. 이제 정상적으로 푸쉬가 됩니다
'개발' 카테고리의 다른 글
GCP Pub/Sub with Spring Boot (0) | 2021.09.08 |
---|---|
Protocol Buffers(protobuf) in Java (0) | 2021.08.30 |
브라우저별 JSON default encoding (0) | 2021.08.14 |
자바 문자열 해시코드 - Java String hash code (0) | 2021.08.01 |
Java Memory Management, Primitive Type And Reference Type, String Pool (0) | 2021.08.01 |
Comments