arvindwill
arvindwill

Reputation: 1992

Unable to Merge

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.

Pull request unable to merge

Upvotes: 3

Views: 4911

Answers (2)

Skaranjit
Skaranjit

Reputation: 794

For future reference, it also works when we open bitbucket instance in incognito.

Upvotes: 0

Ionică Bizău
Ionică Bizău

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

Related Questions