Reputation: 156
I'm using bitbucket and end up with a conflict, code is perfectly same, but when I try to merge
I'm getting "file flags conflict", I've tried to google but didn't find much information about that particular issue, maybe anyone can give me a clue what I need to look for?
I've compare permissions and it's the same on both files.
Thank you.
UPDATE:
I did next:
Upvotes: 3
Views: 588
Reputation: 1330092
That seems to be a BitBucket server issue, when merging from a fork (like accepting a Pull Request). See for instance this bug report.
I always merge local. Have you tried?
- add the remote:
git remote add kfsone https://bitbucket.org/kfsone/tradedangerous.git
- and than you can just:
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.
Upvotes: 4