8

我是 Octopress 的新手,对 git/github 来说相对较新。

我在本地克隆(已安装/设置)Octopress 存储库:

git clone git://github.com/imathis/octopress.git sitename
cd sitename
bundle install
rake install

酷 - 所以现在我有 Octopress 的源代码和我本地驱动器上的骨架站点。

问题 1 - 更新

根据文档,我应该能够通过以下方式更新到最新的 Octopress 更改:

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

但这会导致错误:

[sitename]$ git pull octopress master
fatal: 'octopress' does not appear to be a git repository
fatal: Could not read from remote repository.

为什么会失败?

问题 2 - “我的”东西在哪里?

现在我需要为我创建的资产创建自己的 github 存储库,对吗?如果是这样,我是否将所有内容都存储在那里,还是只存储特定于我的博客的内容(帖子、页面等)?我的猜测是我必须在 github 上创建一个 repro 并将我的更改推送到那里......但同样,我不确定这是否正确。任何建议将不胜感激。

4

3 回答 3

8

回答问题 2:

Octopress 存储库有两个分支,sourcemaster分支包含用于生成博客的文件,主分支包含博客本身(您的帖子等)。

当本地文件夹最初根据Octopress 设置指南进行配置时,主分支存储在名为“_deploy”的子文件夹中。由于文件夹名称以下划线开头,当您git push origin source. 相反,分支(包含您的博客文章)会在您rake deploy.

您可能会发现这篇博文很有帮助。

于 2013-09-12T14:33:15.803 回答
4

你应该octopress在你的 repo 中有一个远程命名来做到这一点:

[sitename]$ git pull octopress master

尝试添加一个远程命名octopress并将其指向https://github.com/imathis/octopress.git

git remote add octopress github.com/imathis/octopress.git
于 2013-09-09T12:09:14.860 回答
2

octopress 文档有些地方有点松懈。它描述了当您使用 github 页面作为部署时制作 octopress 远程:http: //octopress.org/docs/deploying/github/

这个信息应该(我认为)预先添加,因为大多数人可能希望在他们自己的远程仓库中维护他们的博客,名为origin.

于 2013-09-09T16:03:36.167 回答