일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- TOSS
- Android
- 행운퀴즈정답
- 초성퀴즈정답
- 캐슬
- 토스
- 추천인
- 이벤트
- 퀴즈
- 오늘의퀴즈
- 캐웤
- 캐시워크
- 리브메이트
- 행운퀴즈
- 비트코인
- 톹
- 토스정답
- 초성퀴즈
- 안드로이드
- 행퀴
- 캐시슬라이드
- 캐시워크정답
- 오퀴즈정답
- spring게시판
- 자바
- 정답
- ㄹㅂㅁㅇㅌ
- 오퀴즈
- java
- 돈버는퀴즈
- Today
- 252,060
- Total
- 18,363,256
Gomdori
(git) Pull 명령 후 non-fast-forward 문제 한방에 해결! 본문
Pushing to ssh://git@Ip주소/dir/project.git
To ssh://Ip주소/dir/project.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'ssh://git@Ip주소/dir/project.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.
발생원인 :
깃에서 생성된 저장소와 로켈에 생성된 저장소 간 공통분모가 없는 상태에서 병합하려고 해서 발생한 에러.
해결방법
git pull origin --allow-unrelated-histories
git pull origin --allow-unrelated-histories
이제 다시 pull 요청을 하면 될겁니다!!
'코딩(Coding)' 카테고리의 다른 글
error: src refspec master does not match anyerror: failed to push some refs to 'https://IPAddress:port.git' (0) | 2020.02.14 |
---|---|
[mongodb] Date Timezone(KST 또는 Asia/Seoul) 설정하기. (0) | 2020.02.06 |
[Node js/MongoDB/crypto] 몽고디비 양방향 암호화 (cipher) (0) | 2020.02.06 |
[Android] Background Service(Thread) 백그라운드 서비스 유지하기(+Notification) (6) | 2020.02.04 |
[node js] API server/API 서버 제작해보자!(1) (0) | 2020.02.04 |