GitHub
首先注册一个『GitHub』帐号,已有的默认默认请忽略
建立与你用户名对应的仓库,仓库名必须为『your_user_name.github.com』
添加SSH公钥到『Account settings -> SSH Keys -> Add SSH Key』
添加SSH-Key。
首先设置你的用户名密码:
1 | git config --global user.email "bu.ru@qq.com" |
More info: Writing
生成密钥:
1 | ssh-keygen -t rsa -C "bu.ru@qq.com" |
More info: Server
输入文件路径:
1 | H:\hexo\blog>ssh-keygen -t rsa -C "bu.ru@qq.com" |
More info: Generating
最后可以验证一下:
1 | ssh -T git@github.com |
More info: Deployment