문제
새로운 프로젝트를 받기 위해 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 만 선택함)
완료하면 아래와 같이 토큰이 발급되는데 해당 토큰값을 복사한다.
반응형
'도구 > 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 |