Saturday, June 3, 2017

How to make Bitbucket repository working with GitHub Desktop App

Source Tree is the desktop application that is available for Windows and Mac OS to work with Bitbucket repositories.

This tutorial will guide you to use GitHub Desktop application to work with Bitbucket repositories.

Bitbucket repositories are not directly supported by GitHub desktop application. You can’t clone or sync directly to or from bitbucket. Here are few steps that you need to do manually before syncing the Bitbucket repositories.

1) Copy the repository URL from Bitbucket.


Bitbucket with Github

2) Clone bitbucket repository on your local machine using command

       
git clone repository_url

Above command will ask password for your bitbucket account. Provide the password but nothing will get printed on screen even the stars for security reason.

Bitbucket with Github

3) Now add cloned repository to Github desktop application by clicking on the + button. Choose the repository that you have cloned in the first step and click “Add repository” button.

Bitbucket with Github

4) Cloned repository has been added to the Github desktop application, you can see that in the left panel under Other section.

5) Now you can execute all other GitHub commands like commit, pull, push and other commands.

Reference

https://gist.github.com/glueckpress/c53f3a07779ce7f67fe2

No comments:

Post a Comment