Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- java
- 개발
- unity
- H2O
- 번역
- android
- C lanuage
- 자바
- 해석
- 한글
- server
- it
- NGINX
- techEmpower
- javascript
- MySQL
- caddy
- kakao
- error
- centOS7
- C
- 컴퓨터과학총론
- 개발자
- Portfolio
- 안드로이드
- 구글
- ubuntu
- mariadb
- 프래그먼트
- php
Archives
- Today
- Total
개발모음집
error: failed to push some refs to 'git repository path' 본문
실제 프로젝트에는 절대 적용하면 안되는 방법
git repository에 있는 파일을 압축파일로 다운로드받고 푸쉬하려니 아래와 같은 에러가 발생했다.
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'https://github.com/.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 commit 기록 날리고, 푸쉬하는 방법이다.
git push -f -u origin master
출처 : https://stackoverflow.com/questions/10298291/cannot-push-to-github-keeps-saying-need-merge
원래는 repository에 있는 코드를 내 컴퓨터에 pull한 후에 push하는게 정석이지만,
공부용이기도 하고 이미 많은 작업을 했기에 위에 방식대로 repository 기록을 날렸다.
'Server' 카테고리의 다른 글
ssh connection time increase (0) | 2019.09.13 |
---|---|
To change the github remote repository address (0) | 2019.09.12 |
Dockerfile로 Docker 이미지 생성하기 (0) | 2019.06.06 |
ssh install (0) | 2019.03.24 |
docker 처음할 때 (0) | 2019.02.19 |