Skip to content

Instantly share code, notes, and snippets.

@mfferreira
Forked from pulkitsinghal/gist:1481376
Created April 22, 2012 23:16
Show Gist options
  • Save mfferreira/2467458 to your computer and use it in GitHub Desktop.
Save mfferreira/2467458 to your computer and use it in GitHub Desktop.
Move Git repository from Unfuddle to BitBucket
mkdir temp
cd temp
git clone [email protected]:yourDomain/yourRepoName.git
cd yourRepoName/
git remote rm origin
git remote add origin https://[email protected]/yourUsername/yourNewRepoName.git
git remote show origin
git push origin master
cd ../..
rm -rf temp
git clone [email protected]:yourUsername/yourNewRepoName.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment