로컬 저장소에서 원격저장소(github)로 push하는데, error발생
hint:Updates were rejected because a pushed branch tip is behind its remote counterpart.
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.
문제원인
github repository를 생성할 때, README.md 파일을 생성(Add a README file)했기 때문이라는 구글링 결과
문제해결
1. 이를 해결하기 위해서 pull을 해주면 된다고 하길래 pull을 하였으나 또 다른 오류 발생
2. 데이터 유실 등 문제가 있을 수 있는 부분이 있어 git에서 처리 되지 않도록 에러가 발생하는 것이라고 한다.
3. 에러에 상관없이 강제로 push 진행
$ git push origin +main
'git' 카테고리의 다른 글
git 사용법 (원격 저장소) (0) | 2021.07.20 |
---|---|
git 사용법 (로컬 저장소) (0) | 2021.07.20 |