반응형
250x250
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
- JavaScript
- 도커
- codedeploy
- aws
- AWS CI/CD 구축하기
- SQL
- Kafka
- kubeflow
- chartjs
- Python
- node
- COALESCE
- or some instances in your deployment group are experiencing problems.
- codepipeline
- Jenkins
- docker
- Spring
- PostgreSQL
- bootstrap
- Airflow
- IntelliJ
- codedeploy error
- aws cicd
- redis
- java bigdecimal
- Spring Error
- chart.js
- Flux
- codebuild
- VPN
Archives
- Today
- Total
Small Asteroid Blog
[GitHub] GitHub 인증 오류 해결 : https-urls for information on currently recommended modes of authentication. 본문
도구/Git
[GitHub] GitHub 인증 오류 해결 : https-urls for information on currently recommended modes of authentication.
작은소행성☄️ 2023. 10. 12. 18:15728x90
문제
새로운 프로젝트를 받기 위해 git clone을 했는데 다음과 같은 에러가 나면서 프로젝트를 가져오지 못했다.
https-urls for information on currently recommended modes of authentication.
fatal: Authentication failed for 'https://github.com/'
해결방법
비밀번호를 입력할때 사용자 비밀번호가 아닌 토큰값으로 입력한다.
토큰 발급하기
프로필 > Settings > Developer settings > Personal access tokens > tokens (classic) > Generate new token (classic)



Note, Expiration, Select scopes 에 대해서 작성하면 된다.

Note : 목록에 표시되는 이름
Expiration : 토큰을 발급받을 수 있는 기한 설정 (나는 로컬에서 항시 필요하기 때문에 No expiration 으로 진행함)
Select scopes : 발급하려는 토큰에 접근할 수 있는 범위를 지정 (repo 만 선택함)
완료하면 아래와 같이 토큰이 발급되는데 해당 토큰값을 복사한다.

728x90
반응형
'도구 > Git' 카테고리의 다른 글
[Git] error: The following untracked working tree files would be overwritten by checkout: (0) | 2024.01.30 |
---|---|
[Git] master -> main 합치기 (덮어쓰기) (0) | 2023.12.07 |
[git] fatal: will not add file alias 'filename' ('filename' already exists in index) (0) | 2022.11.15 |
[Jenkins] jenkins github 연결하기 (0) | 2022.05.25 |
[github] Git Action 이용해서 티스토리 게시글 깃허브에 업로드하기 (0) | 2022.04.14 |