일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Mac
- git push
- 데이메이커
- SpringBoot
- 기록하는 동구
- 에러
- 자바 파일업로드
- spring
- 클라우드 서비스
- Swift
- git
- java
- JavaScript
- 깃
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- 동구
- 서평
- Mapper
- Xcode
- 한줄평
- 독후감
- 파이썬 웹크롤링
- 오류
- 클라우드 서비스 특징
- missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
- MySQL
- 줄거리
- 자바스크립트
- 콜미동구
- 책
- Today
- Total
목록git push (2)
인생은 속도가 아니라 방향이다
안녕하세요, 기록하는 동구입니다. Git Repository에 있었던 프로젝트를 다 지워버리고 그 전에껄 지우고 새로운 프로젝트를 푸쉬하려했는데 푸쉬가 안된다! ➜ test git:(master) git push -u origin master To https://github.com/donggu1105/test.git ! [rejected] master -> master (fetch first) error: failed to push some refs to 'https://github.com/donggu1105/test.git' hint: Updates were rejected because the remote contains work that you do hint: not have locally. Thi..
나는 아직도 갈길이멀다. 소스트리에서 로컬저장소를 원격저장소로 푸쉬하는데 이런 에러가떴다. 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 잘된다..