Sono abbastanza nuovo git
e attualmente lo uso per gestire il nostro codice in un ambiente di squadra. Ho avuto alcuni problemi di ribasatura e li ho risolti usando
git checkout --ours filename.txt
git add filename.txt
git rebase --continue
Ora desidero eseguire il push delle mie modifiche e quindi eseguire il seguente comando
$ git push origin feature/my_feature_branch
mi dà il seguente errore:
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.
Cosa posso fare per eliminare l'errore?
PS: sto evitando di utilizzare l' --force
opzione il più possibile.