Created
June 15, 2012 02:52
-
-
Save lsparrish/2934446 to your computer and use it in GitHub Desktop.
Convert retro-language bzr repo to git repo and push to github
This file contains hidden or 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 ~/bzr | |
| cd ~/bzr | |
| bzr branch lp:retro-language | |
| mkdir ~/github | |
| mkdir ~/github/retro-language | |
| cd ~/github/retro-language | |
| git init | |
| bzr fast-export --plain ~/bzr/retro-language/ | git fast-import | |
| git checkout master | |
| git remote add origin https://github.com/lsparrish/retro-language.git | |
| git push origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment