1.为Git创建全局name和全局email:
$git config --global user.name "你的名字" $git config --global user.email "你的邮箱"
2.打开terminal,判断是否有ssh软件(步骤略);
$cd ~/ && ssh-keygen -t rsa -C "你的邮箱"
4.进入~/.ssh文件夹:
$cd .ssh
5.把密钥文件加入ssh中:
$ssh-add id_rsa
5(branch).如果生成key加不到 ssh 中,ssh-add id_rsa 命令报错Could not open a connection to your authentication agent,请先使用下列命令再使用step five的命令:
$ssh-agent bash
6.把公钥文件(id_rsa.pub)中的码复制到github(或者coding)网站的ssh密钥管理中(帐号中心);
7.判断ssh钥匙是否成功:
- 测试github
$ssh -T git@github.com
- 测试coding
$ssh git@git.coding.net
8.进入本地仓库并且配置ssh地址
$git remote rm origin $git remote add origin ssh的地址以上配置完成了ssh到github(或者coding) 原文链接:https://www.f2er.com/ubuntu/351585.html