github ssh创建

来源:互联网 发布:手机网络币有几种 编辑:程序博客网 时间:2024/06/05 06:00
# 检查本机是否已经存在ssh公钥$ cd ~/.ssh# 检查本机是否已经存在ssh公钥$ cd ~/.ssh# 创建新的SSH密钥对$ ssh-keygen -t rsa -C "your_email@example.com"      Enter passphrase (empty for no passphrase): [输入密码]      Enter same passphrase again: [再次输入密码]$ ssh -T git@github.com

0 0