Created
September 7, 2014 22:23
-
-
Save s992/23d35ebad8e8988c02c5 to your computer and use it in GitHub Desktop.
Migrating Octopress to a New Computer
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
$ git clone [email protected]:username/username.github.com.git | |
$ cd username.github.com | |
$ git checkout source | |
$ mkdir _deploy | |
$ cd _deploy | |
$ git init | |
$ git remote add origin [email protected]:username/username.github.com.git | |
$ git pull origin master | |
$ cd .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Originally from http://code.dblock.org/octopress-setting-up-a-blog-and-contributing-to-an-existing-one, reproduced at http://nerditorium.danielauger.com/blog/2013/06/22/setting-up-an-existing-octopress-blog-on-a-new-computer/, and reproduced again here. :)