Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 서평
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- Swift
- SpringBoot
- 독후감
- 한줄평
- spring
- 콜미동구
- 줄거리
- git
- Mapper
- 데이메이커
- 파이썬 웹크롤링
- 동구
- 에러
- Mac
- 자바 파일업로드
- Xcode
- 책
- 자바스크립트
- MySQL
- 오류
- missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
- JavaScript
- 클라우드 서비스 특징
- 깃
- java
- 기록하는 동구
- 클라우드 서비스
- git push
Archives
- Today
- Total
인생은 속도가 아니라 방향이다
[Git] ! [rejected] master -> master (fetch first) 에러 해결 본문
반응형
안녕하세요, 기록하는 동구입니다.
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.
This is usually caused by another repository pushing hint: to the same ref.
You may want to first integrate the remote changes hint: (e.g., 'git pull ...') before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details.
띠용 이런 오류가 발생했다. 알고보니 기존데이터가 손실될수있어서 푸쉬를 막은것이다.
아래 명령으로 강제로 푸쉬해주면 된다.
$ git push origin +master
깔끔하게 해결!
반응형
'형상관리 > Git' 카테고리의 다른 글
[Git] git puerror: gpg에서 데이터를 서명하는데 실패했습니다.fatal: 커밋 오브젝트를 쓰는데 실패했습니다 오류 해결법 (0) | 2022.01.15 |
---|---|
[Git] .gitignore 가 적용 안될때 해결방법! (2) | 2021.01.17 |
[Git] 원격저장소에 푸시가 안될때 Updates were rejected because a pushed branch tip is behind its remote counterpart. (0) | 2020.02.03 |
[Git] Git, GitLab에서 특정 브랜치만 클론하는 방법 (0) | 2020.02.02 |
[Git] fatal: remote origin already exists. 에러 뜰때 해결방법 (0) | 2020.01.30 |
Comments