I'm new to Octopress and relatively new to git/github.
I cloned (installed/setup) the Octopress repo locally:
git clone git://github.com/imathis/octopress.git sitename
cd sitename
bundle install
rake install
Cool - so now I have the source to Octopress and a skeleton site on my local drive.
Question 1 - Updating
According to the docs I should be able to update to the latest Octopress changes via:
git pull octopress master # Get the latest Octopress
bundle install # Keep gems updated
rake update_source # update the template's source
rake update_style # update the template's style
but this results in an error:
[sitename]$ git pull octopress master
fatal: 'octopress' does not appear to be a git repository
fatal: Could not read from remote repository.
Why is this failing?
Question 2 - Where does "my" stuff live?
Now I need to create my own github repo for the assets that I create, correct? If so, do I store everything there, or just the things that are specific to my blog (posts, pages, etc.)? My guess is that I have to create a repro at github and push my changes there... but again, I'm not sure if that is correct. Any suggestions would be much appreciated.
git pull octopress master
, should that octopress also be replaced with sitename, like in the installation? – Sadiron