인생은 속도가 아니라 방향이다

[Git] 원격저장소에 푸시가 안될때 Updates were rejected because a pushed branch tip is behind its remote counterpart. 본문

형상관리/Git

[Git] 원격저장소에 푸시가 안될때 Updates were rejected because a pushed branch tip is behind its remote counterpart.

기록하는 동구 2020. 2. 3. 13:27
반응형

나는 아직도 갈길이멀다. 소스트리에서 로컬저장소를 원격저장소로 푸쉬하는데 이런 에러가떴다.

 

hint:Updates were rejected because a pushed branch tip is behind its remote counterpart.

 

힌트라고는 하는데 뭐 어쩌라고....구글링하다가 답을 찾아냈다. 이미 원격저장소에 내가 작업한 코드가 업데이트 되있는 상태여서 그런거라나

 

①이럴때는 먼저 원격지에서 최신내용을 pull 해온다.

$git pull origin master

②겹치는 코드가 있다면 충돌(conflict)이 발생할텐데 어떤 코드를 넣을지는 본인선택 이단계는 conflict가없다면 생략된다.

 

③다시 푸시해본다

$git push --set-upstream origin master

 

 

잘된다. 후

반응형
Comments