repository (2) 썸네일형 리스트형 [Git] ! [rejected] master -> master (non-fast-forward)error: failed to push some refs 해결 방법 만약 터미널에 명령어 git push origin master을 쳤는데 아래와 같은 오류가 나온다면? To https://github.com/inthhh/travel_web_react.git ! [rejected] master -> master (non-fast-forward) error: failed to push some refs to 'https://github.com/inthhh/travel_web_react.git' hint: Updates were rejected because the tip of your current branch is behind hint: its remote counterpart. Integrate the remote changes (e.g. hint: 'git pull .. [Git] VS code 깃허브 연동 해제 / 재설정 remote 명령어 / add, commit, push 새 프로젝트 깃허브에 레포 만들고 vs code 에서 레포 연동하려는데 구글링해보니까 다들 초기화 버튼만 누르면 된다는데 난 초기화 버튼이 없었음;; 그래서 이미 있던 레포 연결 해제하고 다시 연결해주었다. 1. 현재 연결된 레포 확인 git remote -v 2. 위 결과가 존재할 시 연결 해제 명령어 git remote remove origin 3. 다시 연결된 레포 확인해보고, 결과가 없다면 이제 원하는 레포지토리 링크 복사해서 재연결! git remote add origin {url} 연동 성공했다. 4. 이제 첫 커밋 및 푸시를 해보자. 아래의 세 명령어를 순서대로 치면 됨 git add . git commit -m "first commit" git push origin master 끝~~ 이전 1 다음