Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Github for Windows Pull Request for remote Bitbucket Repo

Based on this tutorial I was able to successfully connect Github for Desktop with my remote Bitbucket repo.

Looking at the example tutorial repo I see there is an Pull Request option built in the application - great:

enter image description here

However the option is missing when I chose my remote Bitbucket repo:

enter image description here

I couldn't find any option that is reponsible for this.

Anyone knows what affects this behavior?

like image 425
ChrisB Avatar asked Sep 16 '16 06:09

ChrisB


People also ask

Can I use GitHub Desktop for Bitbucket?

You can't clone a Bitbucket repo using GithHub Desktop directly. Instead you would have to: Clone the Bitbucket repo locally via command line.


2 Answers

"Pull Request" is very much a GitHub feature, associated to GitHub repos.

So For BitBucket, the simplest approach is to push your feature branch to the remote repo (which is a BitBucket one, not a GitHub one), and make your PR from there (from the remote BitBucket web GUI, even within the same repo)

https://confluence.atlassian.com/bitbucketserver/files/808488431/813893206/1/1456788498243/image2015-7-28+10-25-9.png

Once the PR is initiated, each push done from the GitHub Desktop will complete said PR.

like image 53
VonC Avatar answered Oct 20 '22 18:10

VonC


In Bitbucket go to Settings -> Branch Permissions, and add a new branch permission with your name.

EDIT

https://stackoverflow.com/a/37343356/1544886

like image 22
K Scandrett Avatar answered Oct 20 '22 20:10

K Scandrett