깃허브에서 레파지토리에 대한 readme 파일을 추가했을 때 종종 충돌이 일어난다
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. If you want to integrate the remote changes,
hint: use 'git pull' before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
위와 같은 오류 발생
git init
브랜치 변경하기 ex. master -> main으로 변경
git branch -m main
해결방법1. +를 붙이기
git push -u origin +main
해결방법2. -f를 붙이기(force라는 의미로 강제로 push한다는 뜻)
git push -u origin main -f
REF
'프로그래밍 > Github' 카테고리의 다른 글
[Github] The requested URL returned error: 403 (0) | 2024.09.26 |
---|---|
[깃허브] 인텔리제이를 통해 깃허브 커밋(Commit)하는 방법 (0) | 2024.08.10 |