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
- topic
- ros
- 리눅스
- while
- LeetCode
- Subscribe
- 우분투
- 프로그래밍
- 기초
- 마리아 DB
- 오늘도 우라라
- 반복문
- C언어
- mysql
- JungOl
- 오늘도 우라라 펫
- publish
- 등차수열
- ubuntu
- MSG
- 오늘도 우라라 공략
- 데이터 베이스
- mariaDB
- Linux
- 오늘도 우라라 펫 공략
- 그랑사가
- install opencv-4.4.0 on ubuntu 22.04
- C++
- 환경설정
- 토픽
Archives
- Today
- Total
하루의 쉼터
[Error] Github & Source Tree Push Error | Git Token Error 본문
프로그래밍 - 개발/ROS
[Error] Github & Source Tree Push Error | Git Token Error
Changun An 2021. 9. 2. 13:02반응형
| remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead
git -c diff.mnemonicprefix=false -c core.quotepath=false --no-optional-locks push -v --tags origin main:main
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.
소스트리를 통하여 깃허브에 푸시를 하려니 위와 같은 오류가 떴다.
일단 사이트를 보라고하니 아래와 같이 기입한 링크를 통하여 봤다.
https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/
보안 정책이 달라진 듯 하다. 개인 액세스 토큰이 필요하다고 한다.
1. Access Token Create
1.1 github에 들어가서 프로필 - Settings를 클릭한다.
1.2 스크롤을 내려 Developer settings를 클릭한다.
1.3 Personal access tokens - Generate new token을 클릭한다.
1.4 필요한 것을 체크하며 토큰을 생성한다.
* 토큰 정보는 다시 나오지 않으니 보관해야함.
2. 소스트리 적용
2.1 설정을 클릭
2.2 저장소_이름 클릭 - 편집 클릭
2.3 URL/경로 데이터 변경
https://"token"@github.com/"user_name"/"repositorie_name".git
완료 하시면 정상적으로 PUSH 되는 것을 확인 할 수 있습니다.
Reference Site :
https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/
반응형
'프로그래밍 - 개발 > ROS' 카테고리의 다른 글
[ROS] param vs rosparam (0) | 2021.09.20 |
---|---|
[ROS] catkin_ws 구조에 관하여 (0) | 2021.09.16 |
[ERROR] couldn't register subscriber on topic [/"topic_name"] (0) | 2021.08.12 |
[ROS] ros::init()에 관하여 (0) | 2021.08.10 |
[ROS] Publishers and Subscribers Queue 에 관하여 (0) | 2021.07.22 |
Comments