반응형
[Error] Git Authentication Failed 문제 발생.
remote: Invalid username or password.
해결방법
1. remote origin을 제거 및 추가
git remote remove origin
git remote add origin <Repository URL>
2. git add/commit/push 진행
git add <특정 파일>
git commit -m "commit message"
git push origin master
3. UserName, Password를 입력
Username for 'https://github.com': <Git Username>
Password for 'https://DrawingProcess@github.com': <Git Personal Access Token>
+ Personal Access Token 발급: setting -> developer setting -> personal access token -> new token
참고: [Git] Git Personal Access Token 발급 과정(사진 포함)!
+ 추가 방식: userName, passWord에는 본인의 Github 계정을 적어주고 @ 뒤에는 repository 경로를 적어주기
git remote remove origin
git remote add origin https://userName:passWord@github.com/myRepository
참고 자료
- Git pull/push 사용시 사용자 인증 문제 https://blog.naver.com/xyz37/220056104469
- Git Authentication Failed 사용자 인증 문제 해결 (https://jinseongsoft.tistory.com/251)
반응형
'Study: Software(SW) > SW: Error Bug Fix' 카테고리의 다른 글
[Error fix] userdel: user sjchoi is currently used by process 14356 (0) | 2022.08.05 |
---|---|
[Error Fix] invalid new-expression of abstract class type (feat. 추상 클래스) (0) | 2022.07.11 |
[Error Fix] CMake: undefined reference to 'BIO_write' (0) | 2022.07.07 |
[Error Fix] Ubuntu 18.04.04 해상도 변경 안 됨(feat 하나로 고정되어 있는 현상 해결) (0) | 2022.06.01 |
[Error Fix] C++ 한글 깨짐 해결 - UTF8 <-> ANSI 문자셋 변환 (0) | 2020.06.23 |