뉴히의 개발 로그
[git] git push 오류 해결 본문
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'github.com:heejung-newheee/Movie-list.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.
내브랜치에 push를 하려하니 오류가 떳다 Errorrrrrrrrrrrrrr............
pull 을 안해서 인듯...?
git pull
git add .
git commit -m "메세지"
git push origin "브랜치명"
다시 했는데 또!!!!!!!!!!???????
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'github.com:heejung-newheee/Movie-list.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 ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
찾아보니
1. Git Repository를 생성할 때 Readme.md 파일을 생성해서 생기는 오류
2. 이미 push 해놓은 파일이 있어서라던가 데이터 유실 등 문제가 있을 수있는 부분이 있어서 git에서 처리 되지 않도록 에러를 띄우는 것!
일단 ... 임시방편으로 강제 푸시를 하면 해결 할 수 있었다.
git push -f origin master or git push -u origin +master
-f 는 force 강제로 푸시 하는거다
해결은 되엇으나!
** 이 방법은 기존에 커밋했던 코드/파일들이 모두 유실될 수 있으니 주의 !!!!!!!!!!!!!!
'Git' 카테고리의 다른 글
하나의 Repository에 여러 프로젝트 올리기 (0) | 2024.05.25 |
---|---|
github(깃허브) repository 하위 폴더 생성하기 (0) | 2023.07.27 |
[Git 오류] fatal: couldn't find remote ref master 해결 (0) | 2023.06.03 |
[Git] 원격 저장소 연결하여 git 저장소 파일 다운로드하는 방법(pull, fetch, clone) (0) | 2023.05.25 |