Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Use GitHub for Windows for both Bitbucket and GitHub

Is it possible to use GitHub for Windows for both Bitbucket and GitHub at once?

For example, can I have repo on both sites show up in the program, and when I commit/synch a repo, it push to the respective repo on the respective website?

like image 274
Chin Avatar asked Dec 01 '12 23:12

Chin


People also ask

Can you use GitHub desktop with Bitbucket?

If what you want is using Github App for pushing your code to Bitbucket what you need to do is going to "Settings" (in your local repo) and change your Primary remote repository (origin) to point to Bitbucket in your Github App. Then you can Sync Branch. No that preferences, the repository settings.

Can I use GitHub app for Bitbucket?

The GitHub for Windows application has great integrated support for BitBucket (as can be expected), however it can work as a generic Git client just fine. This will allow us to use it with BitBucket.

Can I use same SSH key for GitHub and Bitbucket?

If you need more than a default identity, you can set up additional keys. For security reasons, we recommend that you generate a new SSH key and replace the existing key on your account at least once a year. You can't use the same key between accounts. You must create new keys for each individual Bitbucket account.


1 Answers

No, if you mean: having a local repo with two remotes (one GitHub and one Bitbucket).
You can define only one remote with that client, and it will be either a GitHub one or a Bitbucket one.


Yes, if you limit to one remote, you can use GitHub for Windows with any upstream repo.

The process of adding an upstream repo is now easier with the (constantly) updated GitHub for Windows app:

select the URL and then drag the text from your browser, and drop it into the GitHub for Windows app. It will automatically add the repository.

draganddrop


(Original answer February 2013)

In order for "GitHub for Windows" to publish (instead of "pushing to GitHub"), you need to define a remote "origin" (in the settings of your local repo) using the https address of the Bitbucket repo:

https://[email protected]/user/repo 

So if you create a local repo through "GitHub for Windows", you can add, through its settings, the right remote:

remote

Note that the first refresh will trigger a login screen, in order for you to enter your http credential you are using on bitbucket.org: they will be cached (and encrypted) by GitHub for Windows for the duration of your current session.

login

(See "Password Caching" and "git: 'credential-cache' is not a git command", for more on that credential caching mechanism, recently introduced with Git 1.7.9+)

Any modification you are doing locally will be picked up by the GitHub for Windows client (you might need to exit the repo (left arrow in the top left corner of the GitHub for Windows client, and click again on your local Bitbucket repository: that will trigger a refresh):

commit

The key in the next screenshot is in the word "publish" (instead of "push to GitHub").
That is because the remote "origin" is an https one.

publish in GitHub app

Click on "publish" and you will see your repo status set to "in sync":

in sync

Rush to bitbucket.org to check if, indeed GitHub for Windows did push to Bitbucket:

published

like image 195
VonC Avatar answered Sep 21 '22 22:09

VonC