Created
December 15, 2011 14:56
-
-
Save pulkitsinghal/1481376 to your computer and use it in GitHub Desktop.
Move Git repository from Unfuddle to BitBucket
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
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
Does it move all the commit history?