指尖 - 这里的第一篇

github/jekyll博客终于建立起来,写下来留记。

  1. 因为是新系统环境,丢失ssh-key,重新生成并添加到github里。参考Generating SSH Keys

    $ mkdir .ssh
    $ cd .ssh
    $ ssh-keygen -t rsa -C "your_email@youremail.com"
    # 生成后,将rsa_pub的内容添加到github
    $ ssh -T git@github.com	# 测试
    

    git环境设置。参考Set Up Git

    $ git config --global user.name "your_name"
    $ git config --global user.email "your_email@youremail.com"
    
  2. 克隆SimpleGray,按里面的说明文档配置。几个地址:

  3. 更改远程仓库为站点所在的仓库。

    $ git remote rm origin
    $ git remote add origin git@github.com:hueidou/hueidou.github.com.git # for ssh
    $ git remote -v # 查看
    
  4. 编写post,名称格式YEAR-MONTH-DAY-title.MARKUP。 Markdown中文参考Markdown-Syntax-CN,官网Markdown

  5. 提交。

    $ git commit -a -m "first commit"
    $ git push origin master
    
  6. 本地测试/平时提交

    $ jekyll --server # 本地测试
    $ git add _post/yourpost.md
    $ git commit -m "some message"
    $ git push origin master