나는 git
아직 꽤 새롭지 만 현재 팀 환경에서 코드를 관리하는 데 사용하고 있습니다. 리베이스 문제가 있었고 다음을 사용하여 수정했습니다.
git checkout --ours filename.txt
git add filename.txt
git rebase --continue
이제 변경 사항을 푸시하고 다음 명령을 실행합니다.
$ git push origin feature/my_feature_branch
다음과 같은 오류가 발생합니다.
To ssh://git@coderepo.com:7999/repo/myproject.git
! [rejected] feature/my_feature_branch -> feature/my_feature_branch (non-fast-forward)
error: failed to push some refs to 'ssh://git@coderepo.com:7999/repo/myproject.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Merge the remote changes (e.g. 'git pull')
hint: before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
오류를 제거하려면 어떻게해야합니까?
추신 : --force
가능한 한 옵션 사용을 피하고 있습니다.