Skip to content

Instantly share code, notes, and snippets.

@elidupuis
Forked from pulkitsinghal/gist:1481376
Last active December 11, 2015 11:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elidupuis/4596282 to your computer and use it in GitHub Desktop.
Save elidupuis/4596282 to your computer and use it in GitHub Desktop.
Import repo 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
@elidupuis
Copy link
Author

You'll need to do this for each branch; this might help.

@RobertHeim
Copy link

For Tickets, Milestones, Versions, etc. you can use my converter: https://github.com/RobertHeim/unfuddle2bitbucket

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