Skip to content

Instantly share code, notes, and snippets.

View krunal86's full-sized avatar

Krunal Shah krunal86

  • Third Rock Techkno
View GitHub Profile
@krunal86
krunal86 / github-to-bitbucket
Last active May 7, 2019 07:08 — forked from sangeeths/github-to-bitbucket
Forking a Github repo to Bitbucket
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 https://github.com/bodleian/iiif-manifest-editor.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