Git - file flags conflict

I am using bitbucket and I get a conflict, the code is exactly the same, but when I try to combine

I am getting file-to-file conflict, I tried to google it but didn’t find much information about this specific issue, maybe someone can give me some idea of ​​what I need to look for?

I am comparing the permissions and they are the same for both files.

Thank.

UPDATE:

I did the following:

  • Local changes made to the remote repository. Everything went well.
  • A pull request has been created to the main repository.
  • When the owner tried to accept file conflicts "request file".
+3


source to share


1 answer


This is similar to an issue with the BitBucket server when merging with a fork (for example accepting a pull request). See for example this bug report .

https://bitbucket-assetroot.s3.amazonaws.com/repository/9A9dGk/1502768015-Screenshot%20-%2017_10_2014%20%2C%2016_13_00.png?Signature=benFOwMQs7KcYfNtZJq6yM%3BlDExGaSeFNTZJq6yM%3DBlExp1GaSeFNTZJq6yM%2BlDexxoZA



I always combine local ones. You tried?

  • add remote control: git remote add kfsone https://bitbucket.org/kfsone/tradedangerous.git

  • and you can simply: git pull kfsone master

Merging locally does the trick.

So, if this is a conflict shown by BitBucket on the server side, try cloning and merging locally first, then push back to the remote repo.

+4


source







All Articles