Skip to content

Instantly share code, notes, and snippets.

@pulkitsinghal
Created December 15, 2011 14:56
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • 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 git@yourDomain.unfuddle.com:yourDomain/yourRepoName.git
cd yourRepoName/
git remote rm origin
git remote add origin https://yourUsername@bitbucket.org/yourUsername/yourNewRepoName.git
git remote show origin
git push origin master
cd ../..
rm -rf temp
git clone git@bitbucket.org: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