美文网首页
使用GitHub Pages+Jekyll搭建个人博客网站

使用GitHub Pages+Jekyll搭建个人博客网站

作者: Mew151 | 来源:发表于2020-05-26 14:59 被阅读0次

    创建博客

    1、在你的GitHub上创建一个名为username.github.io的repository,username是你的GitHub账号名。
    2、执行以下命令将这个repository拷贝到你本机:

    git clone https://github.com/username/username.github.io
    

    这时,你的个人博客就搭建好了,只不过它现在是一个空壳。:)

    安装Jekyll

    1、替换源(国外的源实在是太慢了,科学上网也不行)

    gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/
    bundle config mirror.https://rubygems.org https://gems.ruby-china.com
    

    2、安装:

    gem install bundler jekyll
    bundle install
    

    为博客选择主题

    你可以在Jekyll Themes上选择你喜欢的主题。
    Memoirs - Jekyll Bootstrap Theme为例:
    1、进入到该主题的Homepage页面,将该主题下载到本机(可以使用git clone命令或直接下载zip包)。
    2、将下载的主题目录,除了.git目录以外的其他所有,移至你本机的username.github.io目录下。
    3、修改_config.yml文件中的baseurl属性,改为''

    调试&发布

    1、在本机username.github.io目录下,执行

    bundle exec jekyll serve
    

    访问http://127.0.0.1:4000/就可以在本机看到效果。
    2、使用git push命令将username.github.io的修改推送至远端完成发布,
    访问https://username.github.io即可看到效果。


    参考资料:

    相关文章

      网友评论

          本文标题:使用GitHub Pages+Jekyll搭建个人博客网站

          本文链接:https://www.haomeiwen.com/subject/lbbunhtx.html