[Git] remote: Invalid username or password.
github에 코드를 push 하려고 하니까 username
또는 password
가 유효하지 않다는 에러가 발생했다..
git push origin feature/login
remote: Invalid username or password.
fatal: Authentication failed for 'https://github.com/kcjfgnl9205/airbnb-clone-coding.git/'
비밀번호를 변경한 것도 아니고 어제까지 잘 사용했는데 왜??..
Github와의 연결이 끊어졌으니 연결을 해제하고 다시 연결해보자..
1. 원격저장소 연결 해제
# 원격저장소 연결 해제
git remote remove origin
2. 원격저장소 연결
# 원격저장소에 다시 연결하기
git remote add origin https://github.com/[github아이디]/[github리포지토리명.git]
git remote add origin https://github.com/kcjfgnl9205/airbnb-clone-coding.git
3. 원격저장소 연결확인
# 원격저장소 연결확인
git remote -v
4. Git push
# 원격저장소에 푸시 하기
git push origin feature/login
원격저장소를 다시 연결하고 특정 브랜치에 push 하게되면 깃허브에 로그인 할것이냐는 확인창이 뜨게 되는데
로그인을하고 다시 연결하게되면 원격저장소에 push가 성공적으로 완료되었다는 내용을 확인할 수 있다.