[오류]
error: failed to push some refs to
[상황]
commit 하고 push 하려는데 나타난다..
[이유]
원격저장소(github)에 내 로컬(내 컴퓨터)에 없는 파일이 있을 때 내 파일을 push 하면 발생
[해결]
pull -> add -> commit -> push
혹은
pull -> push
1) git pull origin/master (-> 이건 각자의 원격 저장소 이름 사용)
2) git add
3) git commit -m "add buyPage" (-> "" 안에는 커밋메세지)
4) git push origin/master (-> 이건 각자의 원격 저장소 이름 사용)
'git' 카테고리의 다른 글
Git Commit 후 Push 안됌 (feat. repository not found / git-receive-pack not permitted 오류 ) (0) | 2024.07.23 |
---|---|
github repository - flutter 연동 (0) | 2024.07.05 |
Git Untracked Files Prevent Merge 오류 해결 (1) | 2024.05.31 |
git amend commit 그게 뭐야? (0) | 2024.04.24 |
github default 브랜치명을 master 에서 main 으로 변경하기 (0) | 2024.02.15 |