Git命令行使用笔记

ssh

  • debug1: Trying private key: /home/hgneer/.ssh/id_dsa
  • debug1: Trying private key: /home/hgneer/.ssh/id_ecdsa
  • debug1: Trying private key: /home/hgneer/.ssh/id_ed25519
  • 重新创建ssh秘钥文件时一定注意公钥一般会发生变化,
    此时记得给Github添加公钥,避免不必要的麻烦。
  • DSA用在Github的SSH不行。

git clone/git init

  • 如果用Github托管的话,一般先去Github建立Repository然后在自己主机clone会方便些;
    用git init的话在git remote添加远程主机地址时就要去创建Github的Repository来充当地址。
  • 虽然Git本身支持多种协议的远程主机地址,且通常使用git协议的地址速度最快,
    但是Github代码托管平台却只提供https和ssh协议的地址。

阅读更多
几个图片共享网址
配置Hexo主题之Melody

遇到问题

使用Hexo的data file特性新建Melody主题的melody.yml配置文件后,
将个人博客部署到本地,输入本地URL后,浏览器没有响应,提示代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Unhandled rejection TypeError: /home/hgneer/Hexo/themes/melody/layout/includes/layout.pug:31
29| each url in theme.stylesheets
30| link(rel='stylesheet', href=url_for(url) + '?version=' + version())
> 31| each item in theme.cdn.css
32| if item !== undefined
33| link(rel='stylesheet', href=item + '?version=' + version())
34| include ./head.pug

Cannot read property 'css' of undefined
at eval (eval at wrap (/home/hgneer/Hexo/node_modules/pug-runtime/wrap.js:6:10), <anonymous>:80:25)
at eval (eval at wrap (/home/hgneer/Hexo/node_modules/pug-runtime/wrap.js:6:10), <anonymous>:102:4)
at template (eval at wrap (/home/hgneer/Hexo/node_modules/pug-runtime/wrap.js:6:10), <anonymous>:1657:72)
at Theme._View.View._compiled.locals [as _compiled] (/home/hgneer/Hexo/node_modules/hexo/lib/theme/view.js:125:48)
at Theme._View.View.View.render (/home/hgneer/Hexo/node_modules/hexo/lib/theme/view.js:30:15)
at route.set (/home/hgneer/Hexo/node_modules/hexo/lib/hexo/index.js:394:29)
at tryCatcher (/home/hgneer/Hexo/node_modules/bluebird/js/release/util.js:16:23)
at /home/hgneer/Hexo/node_modules/bluebird/js/release/method.js:15:34
at RouteStream._read (/home/hgneer/Hexo/node_modules/hexo/lib/hexo/router.js:134:3)
at RouteStream.Readable.read (_stream_readable.js:452:10)
at resume_ (_stream_readable.js:899:12)
at process._tickCallback (internal/process/next_tick.js:63:19)

解决办法

需要复制到Hexo/source/_data下的_config.yml是melody主题目录下的而非Hexo目录下的。

待用特性

  • Slide页面(利用reveal.js)
  • 相册页面

可选发型

短发

  • 板寸
  • 碎发
  • 莫西干

中发

  • 复古油头

为Github账户设置GPG认证

概述

GPG密钥算法旨在完成文件传输过程中的加密工作。

Github支持的GPG密钥算法:

  • RSA
  • ElGamal
  • DSA
  • ECDH
  • ECDSA
  • EdDSA

为Github账户设置GPG认证的好处:

  1. 可以限制使得对项目的commit必须经过认证后才能merge。

  2. 让项目使用者明晰哪些commit是官方认证哪些又是未经许可。

阅读更多
Vim无插件实现Markdown预览

环境

  • chromium-browser
  • Markdown Viewer
  • Ubuntu16.04
  • Vim
阅读更多
Improve the Speed of Git Clone from Github

出现障碍

更新Vim到8.1后检查插件状态,发现ale需要重新安装。

用的插件管理器是Vim-Plug,在.vimrc.bundles中添加:

1
Plug 'w0rp/ale'

之后在Vim中执行命令

:PlugInstall

看着屏幕上的进度条一点点地跑到终点,终端却抛来如下错误:

阅读更多
Ubuntu16.04备份重装成根目录可扩容LVM方式Linux系统

说明:为了区分原先系统和重装后系统以及述说方便,将原先系统称作Ubuntu1,重装后系统称作Ubuntu2。

先看一下我Ubuntu1的一些信息:

阅读更多