PS C:\Users\*\git\nwitter> git push origin master
To https://github.com/ygreenb/nwitter.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/ygreenb/nwitter.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에 push를 하려니까 갑자기 오류가 발생...
원인
.gitignore 파일이나 README.md 파일로 인해 발생
해결방법
push 하려고 하는 브랜치 이름 앞에 +를 붙여 push 한다.
$ git push origin +master
만약 기존에 작업한 내용이 있으면 아래의 명령어를 통해 pull을 받고 push를 진행해보자!
$ git pull origin master --allow-unrelated-histories
'Git' 카테고리의 다른 글
[Git] 원격 저장소 연결 및 끊기 원격브랜치 갱신, 조회, 삭제 (0) | 2022.06.15 |
---|---|
[Github] 보안 취약점 알림(Dependabot alerts) (0) | 2022.02.08 |
[VSCode] github commit push 하기 (0) | 2022.01.26 |
[VSCode] github 연동하기 (git clone) (0) | 2022.01.26 |
[eclipse] Git Author, Committer 변경방법 (1) | 2020.04.24 |