Skip to content

Instantly share code, notes, and snippets.

@pulkitsinghal
Created December 15, 2011 14:56
Show Gist options
  • Save pulkitsinghal/1481376 to your computer and use it in GitHub Desktop.
Save pulkitsinghal/1481376 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
@shiplu
Copy link

shiplu commented Dec 9, 2012

Does it move all the commit history?

@RobertHeim
Copy link

To convert tickets, milestones, versiones, comments and so on, you can use my free converter: https://github.com/RobertHeim/unfuddle2bitbucket

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment