I'm working on a project, so I pushed a feature branch to the remote repository(using Atlassian bitbucket) and opened a pull request.
But on one file, the bitbucket diplay a "MOVED" status, in brown and shows a conflict message :
conflict: modified on source, modified in target.
this file is in a conflicted state. You will need to resolve the conflict manually before you can merge this pull request.
So when I typed:
git pull origin my_feature
I get the message
Already up-to-date.
How can I resolve this conflict?
merge
operation of your branch ontomaster
(I guess). you should first mergeorigin/master
into your branch and solve the conflict (apparently a file you modified was moved inmaster
branch). Once solved, commit and push your branch again and reopen your pull request. – Montmartregit fetch
? – Montmartre