Build Your Jekyll Blog (On Github)】的更多相关文章

http://kevinjmh.github.io/web/2014/04/20/build-your-jekyll-blog/ 20 April 2014 On GitHub Follow the instructions on jekyllbootstrap On Windows Download rubyinstaller&DevKit Run command in cmd: gem install bundler gem install jekyll Visit Local Site S…
超简单,比jekyll好多了! 看个Demo http://kevinjmh.github.io/ 了解Hexo Hexo是一个由Node.js驱动的,简单.快速.强大的Blog框架.可以快速的生成静态网页托管在GitHub.BAE等平台上.对Markdown有很好的支持,并支持从Wordpress.Octopress迁移. A fast, simple & powerful blog framework,powered by Node.js. Windows下安装 ①Git : GitHub…
前提你必须有一个GitHub账号且本机安装有Git 一.创建一个新的仓库 去你的https://github.com主页新建一个仓库 名字为USERNAME.github.com USERNAME为你的username(下同) 二.安装Jekyll-Bootstrap 在Git Bash中输入例如以下命令 将代码clone到你本地 git clone https://github.com/plusjade/jekyll-bootstrap.git USERNAME.github.com cd U…
1.git常用命令(简易介绍见http://rogerdudler.github.io/git-guide/index.zh.html) git init     #创建新的git仓库 git clone /path/to/repository          #创建一个本地仓库的克隆版本 git clone username@host:/path/to/repository     #创建一个远程仓库的克隆版本 git add <filename> #添加到缓冲区 git add . gi…
jekyll build # => 当前文件夹中的内容将会生成到 ./site 文件夹中. $ jekyll build --destination <destination> # => 当前文件夹中的内容将会生成到目标文件夹<destination>中. $ jekyll build --source <source> --destination <destination> # => 指定源文件夹<source>中的内容将会生…
微软BUILD 2015大会上发布了Visual Studio 对GitHub的支持.安装了如下Developer Assistant插件后,你便可以在Visual Studio中找到GitHub上的示例代码,或一键下载GitHub上知名的开源项目 Developer Assistant for Visual Studio 2015 RC Developer Assistant for Visual Studio 2013 Developer Assistant for Visual Studi…
依稀记得之前访问喵神的博客很有feel 感谢喵神git上的提供的主题Vno-Jekyll. 创建代码仓库(你的用户名).github.io 将主题Vno-Jekyll下载到本地,解压到刚刚的代码仓库目录下,可以把文件夹里的文件都删了.  gem install jekyll 进入到(你的用户名).github.io目录 执行bundle install 如果出现提示: -bash: bundle: command not found 就先安装bundle(执行sudo gem install b…
  之前有自己建站托管自己的博客系统, 后来因为流量实在太少, 服务器又要每个月出钱, 然后就把她关了, 然是拥有自己的网站的心一直没有退去啊, 然后之前有接触到别人用GitHub托管静态网页的玩法, 因此个人也想布一个, 个人比较喜欢支持国产, 所以我用的Gitee, 原理都是一样的.   Gitee托管的是静态网页, 对于一个博客系统, 我们不可能动手全部去写Html, 于是我们这个时候就借助了一个叫做Hexo的博客工具(注意是工具, 不是系统), 把我们的Markdown文件转换成Html…
http://www.ruanyifeng.com/blog/2012/08/blogging_with_jekyll.html…
git clone https://github.com/test/test.github.io.git cd ~/test.github.io git config --global push.default simple git config --global user.email "test@test.com" git config --global user.name "test" git add -A git commit -m "update&…