오랜만에 토이프로젝트를 조금 진행하고 git add commit 후 push 하려는 순간
git push origin main
remote: Invalid username or password.
fatal: Authentication failed for 'https://github.com/jieungo/meong.git/'
인증 실패 에러가 뜨면서 push가 되지 않았다
이럴땐 역시 구글
git remote remove origin
git remote add origin <자신의 레포지토리 주소>
git remote -v
우선 원격 저장소를 삭제하고
다시 저장소를 연결시켜주고 git remote -v 를 입력하여 잘 연결되었는지 확인해준다
git push origin main
To https://github.com/jieungo/meong.git
! [rejected] main -> main (fetch first)
error: failed to push some refs to 'https://github.com/jieungo/meong.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
그 후에 git push 를 해도 이렇게 에러가 생긴다면
git pull <자신의 레포지토리 주소>
git push -u origin main
이렇게 입력해주면 성공적으로 push가 완료된다
😎
반응형