美文网首页资源精选爱博客iOS 开发技巧
【8】全民博客时代的到来——20分钟简要教程

【8】全民博客时代的到来——20分钟简要教程

作者: 代码咖啡 | 来源:发表于2016-10-12 01:21 被阅读57659次

    本文是《程序猿叨叨叨》系列文章中的其中一篇,想要了解更多相关的文章,欢迎猛戳蓝字前往阅读。

    备注:该教程基于Hexo 2.x版本,目前Hexo是3.x版本,照本教程实现有可能会出现404错误,笔者目前还未找时间去解决,待笔者找时间解决该问题后,再写一篇该问题的解决教程,给各位读者带来困扰,还请多包涵!若有读者遇到类似的问题解决了,欢迎在文章的评论区评论留言,我们相互学习!

    背景叨叨叨

    很久以前就想搭建一个个人技术博客的网站了,但是那时候接触的东西不多,没有听说过hexo、jekyll、wordpress等快速blog生成工具,自己在网上找了博客模板,修改了一下前端代码,用eclipse基于jsp搭建了一个小型博客发布到阿里云,但是时间久了发现自己写的代码不稳定,经常获取不到数据库数据,于是放弃了做个人博客网站的想法。

    后来听说了hexo,但是一直没有定下心去看官方文档,于是搭博客网站的想法再一次不了了之。今晚闲暇,实在不知道该干什么,于是捡起了搭博客的想法,入门了hexo搭建github博客,现在记录下来,也算是作个念象,给想要搭建个人博客网站的小伙伴们一个参考。

    PS: 因本人使用的是苹果机,所以本教程以Mac OS为参考,其实mac与windows搭建github博客相差无几,如果有用windows的小伙伴感到不适,可以参考手把手教你建github技术博客教程。

    注册Github账号

    这里我们就不多讲了,小伙伴们可以点击这里,进入官网进行注册。

    创建仓库

    图片来自Github

    登录账号后,在Github页面的右上方选择New repository进行仓库的创建。

    图片来自Github

    在仓库名字输入框中输入:

    Github昵称.github.io
    

    然后点击Create repository即可。

    生成添加秘钥

    在终端(Terminal)输入:

    ssh-keygen -t rsa -C "Github的注册邮箱地址"
    

    一路Enter过来就好,待秘钥生成完毕,会得到两个文件id_rsaid_rsa.pub,用带格式的记事本打开id_rsa.pub,Ctrl + a复制里面的所有内容,然后进入https://github.com/settings/ssh

    图片来自Github

    将复制的内容粘贴到Key的输入框,随便写好Title里面的内容,点击Add SSH key按钮即可。

    安装node.js

    点击进入node.js官网

    图片来自node.js官网

    目前node.js有两个推荐版本,分为通用版最新版,点击可直接进行下载。下载好后,按照既定的套路安装即可。

    安装git

    这里说的git实则是为了使用git指令,我们的git使用一般有两种方式,一种是图形化界面(GUI),另一种是通过命令行,我们这里要使用的是后者,点击这里进入git的下载网站下载git的安装包。

    图片来自git

    有人说,Mac自带git指令;也有人说安装xcode就可以使用git指令。因本人已经忘记当初自己是如何安装git的,所以大家根据自己的实际情况做决定吧。

    安装配置hexo

    强调一下,这一步使我们搭建博客的核心,是重中之重。

    图片来自hexo
    有能力的同学可以选择进入官网自行查看hexo官方文档,愿意听我叨叨的同学可以继续往下看。

    接下来我们的操作都将在Terminal终端进行:

    • 定位博客本地放置的路径
    $ cd 文件夹
    
    定位博客所在目录

    强调:强烈建议不要 选择需要管理员权限才能创建文件(夹)的文件夹。

    • 下载安装hexo
    $ npm install -g hexo-cli
    

    安装好hexo以后,在终端输入:

    $ hexo
    

    若出现下图,说明hexo安装成功:

    hexo安装成功
    • 初始化博客
    // 建立一个博客文件夹,并初始化博客,<folder>为文件夹的名称,可以随便起名字
    $ hexo init <folder>
    // 进入博客文件夹,<folder>为文件夹的名称
    $ cd <folder>
    // node.js的命令,根据博客既定的dependencies配置安装所有的依赖包
    $ npm install
    

    初始化博客以后,我们可以看到博客文件夹里的文件是这样的:

    hexo博客文件夹
    • 配置博客

    基于上一步,我们对博客修改相应的配置,我们用到_config.yml文件,下面是该文件的默认参数信息:

    # Hexo Configuration
    ## Docs: https://hexo.io/docs/configuration.html
    ## Source: https://github.com/hexojs/hexo/
    
    # Site
    title: # The title of your website
    subtitle: # The subtitle of your website
    description: # The description of your website
    author: # Your name
    language: # The language of your website
    timezone: 
    
    # URL
    ## If your site is put in a subdirectory, set url as 'http://yoursite.com/child' and root as '/child/'
    url: http://yoursite.com/child
    root: /
    permalink: :year/:month/:day/:title/
    permalink_defaults:
    
    # Directory
    source_dir: source
    public_dir: public
    tag_dir: tags
    archive_dir: archives
    category_dir: categories
    code_dir: downloads/code
    i18n_dir: :lang
    skip_render:
    
    # Writing
    new_post_name: :title.md # File name of new posts
    default_layout: post
    titlecase: false # Transform title into titlecase
    external_link: true # Open external links in new tab
    filename_case: 0
    render_drafts: false
    post_asset_folder: false
    relative_link: false
    future: true
    highlight:
      enable: true
      line_number: true
      auto_detect: false
      tab_replace:
    
    # Category & Tag
    default_category: uncategorized
    category_map:
    tag_map:
    
    # Date / Time format
    ## Hexo uses Moment.js to parse and display date
    ## You can customize the date format as defined in
    ## http://momentjs.com/docs/#/displaying/format/
    date_format: YYYY-MM-DD
    time_format: HH:mm:ss
    
    # Pagination
    ## Set per_page to 0 to disable pagination
    per_page: 10
    pagination_dir: page
    
    # Extensions
    ## Plugins: https://hexo.io/plugins/
    ## Themes: https://hexo.io/themes/
    theme: landscape
    
    # Deployment
    ## Docs: https://hexo.io/docs/deployment.html
    deploy:
      type: 
    

    看到这里,大家千万别被一长串英文给吓到了,我们实际上要修改的配置只有几项,拿我自己的配置,我们继续往下看:

    1. 修改网站相关信息

    title: inerdstack
    subtitle: the stack of it nerds
    description: start from zero
    author: inerdstack
    language: zh-CN
    timezone: Asia/Shanghai
    

    language和timezone都是有输入规范的,详细可参考语言规范时区规范

    注意:每一项的填写,其:后面都要保留一个空格,下同。

    2. 配置统一资源定位符(个人域名)

    url: http://inerdstack.com
    

    对于root(根目录)、permalink(永久链接)、permalink_defaults(默认永久链接)等其他信息保持默认。

    3. 配置部署

    deploy:
      type: git
      repo: https://github.com/iNerdStack/inerdstack.github.io.git
      branch: master
    

    其中repo项是之前Github上创建好的仓库的地址,可以通过如下图所示的方式得到:

    图片来自Github

    branch是项目的分支,我们默认用主分支master。

    发表一篇文章

    在终端输入:

    // 新建一篇文章
    hexo new "文章标题"
    

    我们可以在本地博客文件夹source->_post文件夹下看到我们新建的markdown文件。

    md文件

    用Markdown编辑器打开文件,我们可以看到这样的内容:

    md文件自动生成内容

    我们写下:

    你好,欢迎来到我的个人技术博客。
    
    输入文章内容

    保存后,我们进行本地发布:

    $ hexo server
    

    如下图:

    本地发布博客

    打开浏览器,输入:

    http://localhost:4000/
    

    我们可以在浏览器端看到我们搭建好的博客和发布的文章:

    本地博客发布

    当然,我们也可以手动添加Markdown文件在source->_deploy文件夹下:

    手动添加markdown文件

    其效果同样可以媲美hexo new <article>

    本地发布效果图

    但是毕竟我们目前发布的只有本机看得到,怎么让其他人看到我们写的博客呢?这时候我们来看看博客的部署。

    我们只要在终端执行这样的命令即可:

    $ hexo generate
    $ hexo deploy
    

    这时候我们的博客已经部署到网上了,我们可以在浏览器地址输入栏输入我们的网址即可,如我的博客是:inerdstack.github.io

    已发布的博客

    本教程为博客搭建入门教程,大家可以根据自己的需求做进一步改进,如更换主题、删除文章等,详情参考官方文档

    相关文章推荐:
    【Mac流派】程序猿修炼之道(4)-技能篇之Markdown(附:工具推荐)
    【Mac流派】程序猿修炼之道(6)-技能篇之git指令
    win10下MarkdownPad 2的html渲染出错解决


    更新20170310

    • 密钥生成文件的位置为:
    windows: C:/Users/用户名/.ssh/
    mac: ~/.ssh/
    

    更新20170312

    • Deployer not found: git
      在终端执行命令:
    npm install hexo-deployer-git --save
    

    然后继续执行hexo deploye指令进行部署。

    更多相关文章

    多设备同步hexo搭建的Github博客
    hexo搭建的Github博客绑定域名
    【干货】2个小时教你hexo博客添加评论、打赏、RSS等功能

    相关文章

      网友评论

      • Reincarnationer:写得很清晰 谢谢
      • 磊彡霁星辰:部署成功了呢 好赞的教程
        代码咖啡:@磊彡霁星辰 哈哈,谢谢
      • Ral空:hexo-deployer-git 安装了,还是提示not found怎么办?
        代码咖啡:http://blog.csdn.net/Qin605/article/details/71124757
        参考一下这个哦
      • 小倪同学呀:大神 为什么我的github上面显示部署成功 但是打开我的博客网页还是显示404呢 好不解啊
        小倪同学呀:@代码咖啡 我没有用域名 , 仓库名字也是正确的, 但是样式却显示不出来 https://paranoialalala.github.io/Paraniodlalala.github.io/ 就是酱紫。。。。。。弄了四个小时没结果 唉
        代码咖啡:@小倪同学呀 github的仓库名字是【自己github用户名.github.io】,看看是不是这个问题;如果使用了域名,看看source文件夹下有没有建立CNAME文件,CNAME文件里面写的是绑定一级域名,没有HTTP://WWW.
        小倪同学呀:打开的博客咯里面没有样式 唉
      • GRIM:hexo new “文章标题” 然后执行 hexo g hexo d 网址上的文章还是只有hello world呢
        代码咖啡:@GRIM 看看有没有可能是缓存的问题,hexo g之前执行一下hexo clean,或者换个浏览器看看
        GRIM:@代码咖啡 前一天配置的 第二天还是不行 桑心呐
        代码咖啡:@GRIM 部署可能会存在延迟哦
      • 你熏:非常谢谢您
        代码咖啡:客气了:smile:
      • 99c4e2b7af61:请问一下,hexo博客的文件夹不用和github仓库名称一样吗?
        代码咖啡:不用一样的
      • 喵喵喵小黑:赞,不过hexo自定义程度不怎么高,大家可以看看去年搭的 http://seessu.com
      • Sage_ul:本地部署成功,但是deploy 执行之后 报错:


        System.BadImageFormatException: Could not load file or assembly 'GitHub.Authentication, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. ▒▒ͼ▒▒▒ظ▒ʽ▒▒▒▒ȷ▒ij▒▒▒
        at Microsoft.Alm.Cli.Program..ctor()
        at Microsoft.Alm.Cli.Program.Main(String[] args)
        bash: /dev/tty: No such device or address
        error: failed to execute prompt script (exit code 1)
        fatal: could not read Username for 'https://github.com': No error
        FATAL Something's wrong. Maybe you can find the solution here: http://hexo.io/docs/troubleshooting.html
        Error:
        Unhandled Exception: System.BadImageFormatException: Could not load file or assembly 'GitHub.Authentication, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. ��ͼ���ظ�ʽ����ȷ�ij�����
        at Microsoft.Alm.Cli.Program..ctor()
        at Microsoft.Alm.Cli.Program.Main(String[] args)
        bash: /dev/tty: No such device or address
        error: failed to execute prompt script (exit code 1)
        fatal: could not read Username for 'https://github.com': No error

        at ChildProcess.<anonymous> (E:\gitpage\node_modules\hexo-util\lib\spawn.js:37:17)
        at emitTwo (events.js:106:13)
        at ChildProcess.emit (events.js:191:7)
        at ChildProcess.cp.emit (E:\gitpage\node_modules\cross-spawn\lib\enoent.js:40:29)
        at maybeClose (internal/child_process.js:920:16)
        at Process.ChildProcess._handle.onexit (internal/child_process.js:230:5)
      • Sage_ul:本地部署成功,但是deploy 执行之后 报错:
        System.BadImageFormatException: Could not load file or assembly 'GitHub.Authentication, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. ▒▒ͼ▒▒▒ظ▒ʽ▒▒▒▒ȷ▒ij▒▒▒
        at Microsoft.Alm.Cli.Program..ctor()
        at Microsoft.Alm.Cli.Program.Main(String[] args)
        bash: /dev/tty: No such device or address
        error: failed to execute prompt script (exit code 1)
        fatal: could not read Username for 'https://github.com': No error
        FATAL Something's wrong. Maybe you can find the solution here: http://hexo.io/docs/troubleshooting.html
        Error:
        Unhandled Exception: System.BadImageFormatException: Could not load file or assembly 'GitHub.Authentication, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. ��ͼ���ظ�ʽ����ȷ�ij�����
        at Microsoft.Alm.Cli.Program..ctor()
        at Microsoft.Alm.Cli.Program.Main(String[] args)
        bash: /dev/tty: No such device or address
        error: failed to execute prompt script (exit code 1)
        fatal: could not read Username for 'https://github.com': No error

        at ChildProcess.<anonymous> (E:\gitpage\node_modules\hexo-util\lib\spawn.js:37:17)
        at emitTwo (events.js:106:13)
        at ChildProcess.emit (events.js:191:7)
        at ChildProcess.cp.emit (E:\gitpage\node_modules\cross-spawn\lib\enoent.js:40:29)
        at maybeClose (internal/child_process.js:920:16)
        at Process.ChildProcess._handle.onexit (internal/child_process.js:230:5)
      • af3115b87a2a:Snippet,一款为hexo设计的简约而漂亮的主题 https://shenliyang.github.io
        af3115b87a2a:@代码咖啡 :smile:
        代码咖啡:博客很漂亮哈:smile:
      • 85cca271cee0:hexo init [blog]
        符号变了
      • _换个昵称试试:请问博主,你这个是什么Markdown编辑工具
        代码咖啡:@A出现 不客气
        _换个昵称试试:@代码咖啡 好的好的,谢谢博主了
        代码咖啡:Atom,全平台的,如果是Mac端的建议用macdown,挺好用的
      • Laukitto:hexo deploy 的时候没权限的话要切换到管理员
      • 指向指针的指针_:谢谢楼主的博客,成功搭建好了 http://zhangchaozc.cn/
        代码咖啡:@指向指针的指针_ :smile: 不客气
        指向指针的指针_:@代码咖啡 thanks~:blush:
        代码咖啡::smile: 很高兴帮到你
      • iMasking:是不是要另外建立一个git存放hexo的源代码?
        代码咖啡: @iMasking 创建一个分支
      • 般犀:谢谢你的文章,我完成了博客的搭建!
        般犀:我在博客的第一篇博文里提到了你哈哈

        https://millionqw.github.io/2017/07/02/%E7%AC%AC%E4%B8%80%E4%B8%AAhexo%E5%8D%9A%E5%AE%A2%E7%BB%88%E4%BA%8E%E5%BB%BA%E6%88%90/
        代码咖啡:@一万群什麼 :smile: 不客气
      • hojun:我就是看这篇教程搭的哈哈哈哈。。。。。
        https://honjun.github.io/
      • fed54169b103:npm ERR! C:\Users\自行\AppData\Roaming\npm-cache\_cacache is not a legal HTTP header value

        npm ERR! A complete log of this run can be found in:npm ERR! C:\Users\自行\AppData\Roaming\npm-cache\_logs\2017-06-23T10_00_00_494Z-debug.log

        楼楼在建立博客文件夹的时候的提示,而后再 npm install 也是这样提示,这个怎么办
      • dreamkong:There isn't a GitHub Pages site here.

        If you're trying to publish one, read the full documentation to learn how to set up GitHub Pages for your repository, organization, or user account.

        404这个怎么解决呢 各位大大
        代码咖啡: @钱八斤 是的
        钱八斤:没部署上去
        hexo g
        hexo d
        要等完成了显示done了才行
      • c2b6610bc8a6:配置统一资源定位符(个人域名)url: http://inerdstack.com
        这里的URL填的是购买的真是域名吗?
        代码咖啡: @执剑凌虚 对的
      • youyuge:过程很顺利,感谢up
        代码咖啡:@youyuge 不客气
      • coderLfy:感谢
        代码咖啡: @coderLfy 不客气
      • 花开半夏_NOTen:楼主,按照你的步骤一步一步走,还是报错,求助

        bash: /dev/tty: No such device or address
        error: failed to execute prompt script (exit code 1)
        fatal: could not read Username for 'https://github.com': Invalid argument
        FATAL Something's wrong. Maybe you can find the solution here: http://hexo.io/docs/troubleshooting.html
        Error: bash: /dev/tty: No such device or address
        error: failed to execute prompt script (exit code 1)
        fatal: could not read Username for 'https://github.com': Invalid argument

        at ChildProcess.<anonymous> (E:\mine\yuzexia\yuzexia.github.io\node_modules\hexo-util\lib\spawn.js:37:17)
        at emitTwo (events.js:106:13)
        at ChildProcess.emit (events.js:191:7)
        at ChildProcess.cp.emit (E:\mine\yuzexia\yuzexia.github.io\node_modules\cross-spawn\lib\enoent.js:40:29)
        at maybeClose (internal/child_process.js:877:16)
        at Process.ChildProcess._handle.onexit (internal/child_process.js:226:5)
        FATAL bash: /dev/tty: No such device or address
        error: failed to execute prompt script (exit code 1)
        fatal: could not read Username for 'https://github.com': Invalid argument

        Error: bash: /dev/tty: No such device or address
        error: failed to execute prompt script (exit code 1)
        fatal: could not read Username for 'https://github.com': Invalid argument

        at ChildProcess.<anonymous> (E:\mine\yuzexia\yuzexia.github.io\node_modules\hexo-util\lib\spawn.js:37:17)
        at emitTwo (events.js:106:13)
        at ChildProcess.emit (events.js:191:7)
        at ChildProcess.cp.emit (E:\mine\yuzexia\yuzexia.github.io\node_modules\cross-spawn\lib\enoent.js:40:29)
        at maybeClose (internal/child_process.js:877:16)
        at Process.ChildProcess._handle.onexit (internal/child_process.js:226:5)
      • 李序锴:多谢,已经部署成功!:yum:
        代码咖啡: @李序锴 不客气😄
      • 397548e90e7d:互访 http://blog.sunxinfei.com/H5/
        代码咖啡: @很懒懒得想昵称 好的哈😄
      • MangoMade:你好, 为什么不建议装在需要管理员权限的文件夹下面呢?如果不装在这里装在哪里比较合适?
        代码咖啡: @MangoMade 博客操作涉及新建文章和修改文章,在需要管理员权限的文件夹下需要修改文件读写操作权限,您可以放在ducument目录下
      • 飞渡浮舟:博主请问:为什么我用 xxx.github.io来访问报404错误
        代码咖啡:@印象丶亮仔 部署时候有没有报错?如果没有,看看Github那边是不是有延迟
        飞渡浮舟: @代码咖啡 是一致的还是不行呢,本地可以访问,github上也部署了
        代码咖啡:xxx要和github的昵称一致
      • iamgaoshuai:2. 配置统一资源定位符(个人域名)

        url: http://inerdstack.com
        必须有个人域名吗?
        代码咖啡:@codeShuai 可以不用个人域名的
      • iamgaoshuai:安装多次 一直没有成功 /usr/local/lib
        └── hexo-cli@1.0.2

        gaoshuaideMacBook-Air:~ gaoshuai$ hexo
        { Error: Cannot find module './build/Release/DTraceProviderBindings'
        at Function.Module._resolveFilename (module.js:455:15)
        at Function.Module._load (module.js:403:25)
        at Module.require (module.js:483:17)
        at require (internal/module.js:20:19)
        at Object.<anonymous> (/usr/local/lib/node_modules/hexo-cli/node_modules/dtrace-provider/dtrace-provider.js:17:23)

      • 陪伴最长情:按照楼主的部署了,已经返回INFO Deploy done: git 部署成功,但是GitHub工作空间里面code下面什么都没有!浏览器中输入https://bipengfei.github.io , 返回的是404,https://github.com/bipengfei/bipengfei.github.io/tree/master,这个是GitHub工作空间地址,大神有空帮忙看看,哪里没设置好!
      • 陪伴最长情:大神问下,前面都是正确的,到链接本地服务器的时候报:WARN No layout: index.html这个怎么解决!!
        INFO Start processing
        INFO Hexo is running at http://localhost:4000/. Press Ctrl+C to stop.
        WARN No layout: index.html

        代码咖啡:@陪伴最长情 hexo init应该没有弄完整,你可以去github上找nexT,用git指令将主题下过来
        代码咖啡:@陪伴最长情 hexo clean, hexo generate,hexo server,这三个命令依次执行以下看看还有没有这个问题
        陪伴最长情:还有就是我看了下我的文件夹,themes文件夹下面为空!这个是什么问题啊
      • efca62b1c95a:hexo安装完成后
        运行hexo提示找不到
        代码咖啡:@非_b56b 将hexo配置到环境变量
      • 9d426ee34834:为什么想了 好多办法 连最基础的本地服务器都打不开 safari无法连接locathost ,兄弟有遇到的么
      • 9d426ee34834:为什么想了 好多办法 连最基础的本地服务器都打不开 safari无法连接locathost ,兄弟有遇到的么
      • 程哥哥OMG:呼叫楼主,按照你的方式都弄好了,github文件都显示正常,可是页面都是404,我尝试打开你的也是404,这是出现什么问题了吗
        代码咖啡:@程哥哥OMG :joy: 我的博客地址已经换了,变成:http://xmkf.xyz
      • zithan:在hexo d之前没有执行hexo g哦,编辑一下,对后来的有帮助,🙏
        dreamkong:@MrJGuo 不需要输入 <>这个的 直接输入文件夹的名就行
        MrJGuo:-bash: syntax error near unexpected token `newline' 请问大神怎么解决
        代码咖啡:谢谢提醒哦
      • 1f6529f8ae52:要买域名的吗
        helinyu:域名和对应的怎么联系起来的?不是需要dns解析么?
        小蛋子:push到GitHub上无法访问时什么情况呢?
        代码咖啡:可以不买的,博客网址默认为:github昵称.github.io
      • Cayley:部署好了后,在浏览器中看本地的local4000可以。但是hexo deploy后。打开博客没有反应。
        CayleydeMacBook-Pro:blog cayley$ hexo deploy
        INFO Deploying: git
        INFO Clearing .deploy_git folder...
        INFO Copying files from public folder...
        On branch master
        nothing to commit, working tree clean
        Everything up-to-date
        Branch master set up to track remote branch master from https://github.com/CayleyMongo/CayleyMongo.github.io.git.
        INFO Deploy done: git

        是什么原因呢
        代码咖啡:@Cayley github page更新会有延时,需要等一会儿,如果还不行,看看这个链接https://segmentfault.com/q/1010000007551816,不知道能不能帮到你,我之前也有遇到像你这样类似的问题,然后打破一切重新开始
        Cayley: http://localhost:4000/
        这里是有的
        Cayley:CayleydeMacBook-Pro:blog cayley$ hexo server
        INFO Start processing
        INFO Hexo is running at http://localhost:4000/. Press Ctrl+C to stop.
        ^CINFO Catch you later
        CayleydeMacBook-Pro:blog cayley$ hexo deploy
        INFO Deploying: git
        INFO Clearing .deploy_git folder...
        INFO Copying files from public folder...
        On branch master
        nothing to commit, working tree clean
        Everything up-to-date
        Branch master set up to track remote branch master from https://github.com/CayleyMongo/CayleyMongo.github.io.git.
        INFO Deploy done: git
      • 晶辉吖:http://luojh.me
        bc99a02cc3b2:@Cayley 同样,解决了吗?
        Cayley:部署好了后,在浏览器中看本地的local4000可以。但是hexo deploy后。打开博客没有反应。
        CayleydeMacBook-Pro:blog cayley$ hexo deploy
        INFO Deploying: git
        INFO Clearing .deploy_git folder...
        INFO Copying files from public folder...
        On branch master
        nothing to commit, working tree clean
        Everything up-to-date
        Branch master set up to track remote branch master from https://github.com/CayleyMongo/CayleyMongo.github.io.git.
        INFO Deploy done: git
        晶辉吖:自己完成了一个相册功能,用node写了一个爬虫,拉取instagram上的图片,保存到本地,然后hexo创建相册生成页面。
      • 2efa5279463a:赞!在你的帮助下,完美完成搭建!
        http://gglinux.com,欢迎互访哈
        2efa5279463a:@胜哥哥 没有哦。。还是很顺利的
        9d426ee34834:为什么想了 好多办法 连最基础的本地服务器都打不开 safari无法连接locathost ,兄弟有遇到的么
        代码咖啡: @gglinux1 哈哈,好
      • 车大棒:话说 hexo d,执行过程中出现乱码,之后部署失败。楼主有经历过吗?
        代码咖啡:@车大棒 看看这个链接,希望可以帮到你:https://www.zhihu.com/question/52272170/answer/129909383
        车大棒:@代码咖啡 已经解决了,windows10 cmd有一点问题,用git bash执行hexo d 就ok了。
        但是上传上去了,css,js无法找到报错404,本地运行ok。真是迷之尴尬! :joy:
        代码咖啡:@车大棒 在本地使用sublime编辑器修改config._yml文件的编码方式为utf-8,重新部署
      • ElonYanJ:thx
        af4c396f5144:@胜哥哥 换个端口就好了,不要用那个4000.
        9d426ee34834:为什么想了 好多办法 连最基础的本地服务器都打不开 safari无法连接locathost ,兄弟有遇到的么
        代码咖啡:@Joelya u r welcome
      • Hyleon:https://sherlockvic.github.io/
        9d426ee34834:为什么想了 好多办法 连最基础的本地服务器都打不开 safari无法连接locathost ,兄弟有遇到的么
      • Arestory:ERROR Local hexo not found in ~
        ERROR Try running: 'npm install hexo --save'
        请问怎么解决啊
        代码咖啡:@Vivaloki 要的,这样速度会快点
        1f6529f8ae52:@代码咖啡 原因是npm install 卡在> node scripts/install.js,请问是要使用淘宝 NPM 镜像解决吗
        代码咖啡:使用管理员权限试试
      • iOS收藏家:不错学习到了 :smile:
      • 落落cxy:可以学学呀
      • 董浩_:出现ERROR Deployer not found: git时,在blog目录执行以下命令
        npm install hexo-deployer-git --save
        非常记得你:执行命令后还是无法解决!

      本文标题:【8】全民博客时代的到来——20分钟简要教程

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