git push to a remote repository - "Unable to perform non fast forward merge on target. Please pull or fetch and merge manually."

11 visualizzazioni (ultimi 30 giorni)
When using Git integration with Simulink Projects, and performing a push to a remote repository, you may get the following "Unable to perform non fast forward merge on target. Please pull or fetch and merge manually."

Risposta accettata

David
David il 22 Set 2014
The message "Unable to perform non fast forward merge on target. Please pull or fetch and merge manually" usually means that your origin branch is not up to date; or in other words, someone else has submitted to the remote repository since you created your repository and you are not up to date. You need to push the fetch button to update your origin branch and then merge the origin branch into your local branch.
For instance if you are on the master branch, push fetch, open the branch manager, select origin/master and select merge. Then you need to resolve any conflicts and perform a commit. You might not have any conflicts, but if you do they need resolving.
Once you have done this you will be able to do a push.

Più risposte (0)

Categorie

Scopri di più su Source Control in Projects in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by