깃:에러: 두 판 사이의 차이

학교의 모든 지식. SMwiki
둘러보기로 이동 검색으로 이동
(새 문서: == 개요 == 각종 에러 모음 <br /> == 에러 == === Pulling without specifying how to reconcile divergent branches is discouraged........ === pull로 땡길 때 다양한 방...)
 
편집 요약 없음
 
1번째 줄: 1번째 줄:
== 개요 ==
==개요==
각종 에러 모음
각종 에러 모음
<br />
<br />


== 에러 ==
==에러==


=== Pulling without specifying how to reconcile divergent branches is discouraged........ ===
===Pulling without specifying how to reconcile divergent branches is discouraged........===
pull로 땡길 때 다양한 방식이 생겨났는데, 이 방식을 명확하게 해달라는 내용의 에러이다.
pull로 땡길 때 다양한 방식이 생겨났는데, 이 방식을 명확하게 해달라는 내용의 에러이다.


<code>git config pull.ff only</code> 혹은 <code>git config --global pull.ff only</code> 명령을 실행해준다.
<code>git config pull.ff only</code> 혹은 <code>git config --global pull.ff only</code> 명령을 실행해준다.


=== Fatal: Not possible to fast-forward, aborting. ===
===Fatal: Not possible to fast-forward, aborting.===
git pull --rebase
git pull --rebase
=== Please commit your changes or stash them before you merge. Aborting ===
한 가지에 대해 여러사람이 작업한 경우; pull로 땡겨와야 하지만, 서버에서 별도의 작업이 이루어진 경우 발생한다.
git stash 후에 git pull을 하면 된다.
[[분류:깃(Git)]]
[[분류:깃(Git)]]

2022년 9월 8일 (목) 15:56 기준 최신판

개요[편집 | 원본 편집]

각종 에러 모음

에러[편집 | 원본 편집]

Pulling without specifying how to reconcile divergent branches is discouraged........[편집 | 원본 편집]

pull로 땡길 때 다양한 방식이 생겨났는데, 이 방식을 명확하게 해달라는 내용의 에러이다.

git config pull.ff only 혹은 git config --global pull.ff only 명령을 실행해준다.

Fatal: Not possible to fast-forward, aborting.[편집 | 원본 편집]

git pull --rebase

Please commit your changes or stash them before you merge. Aborting[편집 | 원본 편집]

한 가지에 대해 여러사람이 작업한 경우; pull로 땡겨와야 하지만, 서버에서 별도의 작업이 이루어진 경우 발생한다.

git stash 후에 git pull을 하면 된다.