잘 정리해보자

Git Error : Updates were rejected because the tip of your current branch is behind... 본문

Git

Git Error : Updates were rejected because the tip of your current branch is behind...

토마토오이 2021. 6. 15. 02:32

Github에 repository 생성 후 처음 push 할 때 에러 발생하는 경우

 

 

ERROR : 

Updates were rejected because the tip of your current branch is behind its remote counterpart...

 

 

 

원인 :

만약 repository 생성 시, README.md 파일을 같이 생성 한 경우, 해당 파일을 pull 먼저 한 후 push 를 하라는 에러 메시지

 

 

해결 :

구글링 다 해서 pull 하고 다시 push 했는데 다 소용없다. 

그냥 repository 깔끔하게 삭제 후, 다시 생성 할 때 옵션에 README.md 파일 생성을 체크하지 않고

다시 생성한 후, git add README.md 를 통해 생성하든 안하든, 후에 push를 하면 잘 된다.

 

 

README.md 생성 안하고 repository 생성하면 첫화면에 git init 가이드가 나온다.

 

 

가이드 명령어

git init
git add README.md
git commit -m "create"
git branch -M main
git remote add origin https://github.com/[storage]/[repository].git
git push -u origin main

 

 

'Git' 카테고리의 다른 글

Git Error : Permission denied (publickey)  (0) 2021.06.15
Comments