git push2 git push error : Invalid username or password, Authentication failed 해결방법 오랜만에 토이프로젝트를 조금 진행하고 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/.. 2022. 1. 2. [GIT & GITHUB] github 원격저장소에 Commit push하기 저번 git add, commit 했던 방법에 이어서이번 포스팅에선 local directory 에서 git remote repository 원격저장소로 보내는 방법에 대해 알아보자 우선 git commit -m 을 통해 커밋 메시지를 "add index.html"로 작성하여 commit 하였다그럼 커밋은 내 로컬 디렉토리에 저장이 된다 만약 현재 나의 branch가 master로 되어있다면git branch -M main을 통해서 현재 git의 메인브랜치 이름인 main 으로 변경한다원래 git 의 메인브랜치는 master였는데 인종차별 관련 이슈로 main으로 변경하였다 그리고 처음에 나의 로컬 디렉토리와 github 원격저장소가 연결이 안되어있으므로git remote add origin명령어를 .. 2021. 6. 27. 이전 1 다음 반응형