git常用命令 Posted on 2018-04-25 | In 工具 , Git | Visitors: Words : 1.7k | Reading ≈ 6 min git 常用命令记录。(持续更新) Read more »
配置git环境之设置SSH key Posted on 2018-04-07 | In 工具 , Git | Visitors: Words : 381 | Reading ≈ 1 min 配置SSH key配置ssh秘钥,以及使用git协议,每次pull、push可以免去输入账号密码的麻烦。不过记得查看下远程仓库地址是不是https协议,如果是就要要改成git协议才可以不用输入密码。 配置过程很简单,只需2步: Read more »
配置git环境之设置remote url的传输协议 Posted on 2018-04-07 | In 工具 , Git | Visitors: Words : 42 | Reading ≈ 1 min 把git的remote url改为git协议。查看当前remote url1git remote -v 如果是https开头,使用set-url来调整:1git remote set-url origin git@github.com:lovecoding/lovecoding.github.io.git
配置git环境之设置用户名和邮箱 Posted on 2018-04-07 | In 工具 , Git | Visitors: Words : 25 | Reading ≈ 1 min 设置用户名邮箱12git config --global user.email "lovecoding@163.com"git config --global user.name "lovecoding"
进阶(一):下载hexo主题,配置博客界面 Posted on 2018-04-07 | In 博客搭建 | Visitors: Words : 237 | Reading ≈ 1 min hexo主题的下载、安装、启用、验证、和部署。 Read more »
如何使用hexo+github建立自己的博客 Posted on 2018-04-06 | In 博客搭建 | Visitors: Words : 1k | Reading ≈ 4 min 利用hexo和github搭建自己的博客网站并不复杂,只需follow以下3个steps: 创建github.io page 搭建本地hexo环境 将github.io page与hexo关联起来 Read more »
node-widows Posted on 2018-04-06 | In 前端技术 | Visitors: Words : 18 | Reading ≈ 1 min 使用node-windows 将node服务变成windows服务进行管理npm主页