对于新手来说,在ubuntu下ssh到github(或者coding)是一个无比艰难的事情,那么下面我就废话少说,直接上步骤了。
1.为Git创建全局name和全局email:
$git config --global user.name "你的名字"
$git config --global user.email "你的邮箱"
2.打开terminal,判断是否有ssh软件(步骤略);
3.用ssh-keygen命令在个人文件夹下生成公钥密钥:
$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 git@github.com
测试coding
$ssh git@git.coding.net
8.进入本地仓库并且配置ssh地址
$git remote rm origin
$git remote add origin ssh的地址
以上配置完成了ssh到github(或者coding)。