git

[Git 에러] remote: Invalid username or password.

chanchand 2023. 1. 17. 22:22
반응형

git push 명령어 시도할 때, 아래와 같은 오류를 볼 수 있다.

remote: Invalid username or password.
fatal: Authentication failed for '[URL주소]'

 

Github

Settings 클릭 > 맨 밑 Developer settings 클릭

 

Personal access tokens-Tokens(classic) 클릭 > Generate new token(classic) 클릭

 

Note : 이름 

Expiration : 최대 90days까지 설정가능

Select scopes : repo만 선택 (자유롭게 선택 가능)

Generate token 클릭

 

토큰이 생성되면 이를 복사한다.

 

 

Git

origin을 제거한 후, 토큰과 함께 다시 추가한다.

닉네임 : github의 닉네임, 토큰 : 복사한 토큰

$ git remote remove origin
$ git remote add origin https://[닉네임]:[토큰]@github.com/[repository_경로]

 

다시 push 명령어를 실행하면 정상적으로 동작되는 것을 확인할 수 있다.

반응형

'git' 카테고리의 다른 글

git/원격 저장소 연결 해제  (0) 2023.09.15
백준, 프로그래머스 GitHub 연동  (0) 2023.02.09
Github 업로드  (0) 2023.01.17
Git 다운로드  (0) 2023.01.17
Git vs Github  (0) 2023.01.17