Reputation: 1992
As regular user of bitbucket never face this problem before. Created Pull Request in regular way and when trying to merge it throws error without any details about reasons. Tried for several days with gap in between and also tried in different timing. What will be the reason and how to solve it.
Upvotes: 3
Views: 4911
Reputation: 794
For future reference, it also works when we open bitbucket instance in incognito.
Upvotes: 0
Reputation: 113355
Since you don't know any details about the error, just merge your branches in your command line:
git merge my-feature-branch
git push --all
(run this in the branch where you want my-feature-branch
to be merged)
Also, if you consider so, you can always open an issue here.
Upvotes: 1