Skip to content

Instantly share code, notes, and snippets.

@agusmu
Forked from callerc1/github-to-bitbucket
Created December 13, 2016 09:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agusmu/2d454b7bb9fb2efb5304804c8313a580 to your computer and use it in GitHub Desktop.
Save agusmu/2d454b7bb9fb2efb5304804c8313a580 to your computer and use it in GitHub Desktop.
Go to Bitbucket and create a new repository (its better to have an empty repo)
git clone git@bitbucket.org:abc/myforkedrepo.git
cd myforkedrepo
Now add Github repo as a new remote in Bitbucket called "sync"
git remote add sync git@github.com:def/originalrepo.git
Verify what are the remotes currently being setup for "myforkedrepo". This following command should show "fetch" and "push" for two remotes i.e. "origin" and "sync"
git remote -v
Now do a pull from the "master" branch in the "sync" remote
git pull sync master
Setup a local branch called "github"track the "sync" remote's "master" branch
git branch --set-upstream github sync/master
Now push the local "master" branch to the "origin" remote in Bitbucket.
git push -u origin master
Courtesy: http://stackoverflow.com/questions/8137997/forking-from-github-to-bitbucket
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment