hexo
git
windows下配置 ssh 公钥
1. 安装git,从程序目录打开 "Git Bash"
2. 键入命令:ssh-keygen -t rsa -C "github account"
"github account"是github账号
3. 提醒你输入key的名称,输入如id_rsa
4. 在C:\Documents and Settings\Administrator\下产生两个文件:id_rsa和id_rsa.pub
5. 把4中生成的密钥文件复制到C:\Documents and Settings\Administrator\.ssh\ 目 录下。
6. 用记事本打开id_rsa.pub文件,复制内容,在github.com的网站上到ssh密钥管理页面,添加新公钥,随便取个名字,内容粘贴刚公钥
访问git仓库
- git 远程URL只有在使用git协议时才能使用ssh的方式pull push, https是不能使用 ssh的
- 使用git访问一下_config.yml中的git仓库地址,如 git clone git@github.com:yangguosdxl/yangguosdxl.github.com.git,应该是不需要密码的,因为有ssh key的配置
hexo