1) 产生公钥 (id_rsa.pub) 与私钥 (id_rsa), 放到 .ssh
$ cd ~/.ssh
$ ssh-keygen -t rsa -b 4096 -C "钥匙名字"
Generating public/private rsa key pair.
Enter file in which to save the key (/home/UID/.ssh/id_rsa): id_rsa 文件名
Enter passphrase (empty for no passphrase): 设置密码
Enter same passphrase again: 重复以上密码
2) 将公钥放去 github
登录 https://github.com/settings/ssh
添加 ~/.ssh/id_rsa.pub 公钥内容
3) 测试
$ git clone git@github.com:户口名/仓库名.git
* 第一次用 ssh 连接 github.com 会要求输入以上设置的密码.
4) 其它
之前已经 clone 的, 可修改 remote url
$ git remote set-url origin git@github.com:户口名/仓库名.git
没有评论:
发表评论