-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Since _deploy
directory is handled by an individual git repository, when you want a different git author/committer than the system/global one(usually defined in ~/.gitconfig
), you need to go to _deploy
directory and type these command:
$ git config user.name "NEW NAME"
$ git config user.email "NEW EMAIL"
Feel free to change "NEW NAME"
and "NEW EMAIL"
with your desired one. And remember do these before your run $ rake deploy
at first time, then you can see these setting effective under your git repository.
Further, you can also set another different pair of name/email for your source repository, just repeat steps above under your Octopress's root directory.
6 August 2012: The existing Octopress Disqus plugin works with Disqus 2012 and no problems have been reported.
6 August 2012: The most complete solution is to use rbenv with the bundler plugin. You should follow the installation and configuration instructions for rbenv and then follow the Octopress configuration instructions. If you do not have the correct version of Ruby, be sure to follow these instructions.
A unsupported alternative is to modify the .../octopress/Gemfile.lock
file. For example, if the version of Octopress that you are using specifies the 3.1.18 version of the sass
gem but you have the 3.1.20 version of the gem installed, you can change the required version in the Gemfile.lock. NOTE: While this solution is expected to work, we cannot provide support for modified versions of Octopress.
From issue 729, adding these two environment variables
export LC_CTYPE = en_US.UTF-8
export LANG = en_US.UTF-8
will fix the problem for UTF characters.
No.
- Category support is built in to Jekyll. Tags are not.
- Using categories is straightforward and one type of taxonomy should be enough.
- "Should this be a category or a tag" is a waste of a writer's time.
- Creating tag index pages adds time to generation.
- Tag clouds look like SEO vomit.
6 August 2012: Octopress didn't start out as a gem. Converting it to a gem requires additional effort. Converting Octopress to a gem is in our plans but has not yet been targeted for a specific release. We are doing our best to weigh the effort and benefits of converting Octopress to a gem vs. adding new features and fixing bugs in the existing Octopress installation.
- How do I use images from my repository in my Octopress blog. See issue 701.
- How can I host 2 or more Octopress blogs in one domain. See issue 708 and Gist 3734671.