setup local repo
mkdir myrepository
cd myrepository
git init
add bitbucket remote as "origin"
git remote add origin ssh://[email protected]/aleemb/myrepository.git
add github remote as "sync"
git remote add sync https://github.com/aleemb/laravel.git
verify remotes
git remote -v
**should show fetch/push for "origin" and "sync" remotes**
first pull from github using the "sync" remote
git pull sync
setup local "github" branch to track "sync" remote's "master" branch
git branch --track github sync/master
switch to the new branch
git checkout github
create new master branched out of github branch
git checkout -b master
push local "master" branch to "origin" remote (bitbucket)
git push -u origin master
https://stackoverflow.com/questions/8137997/forking-from-github-to-bitbucket
Thank you very much!
git pull sync
did not work since I had not created any branch so just usinggit branch --track github sync/master
was enough