[Ubuntu][系统配置]连接至Github(ecdsa)

步骤1:打开终端机 Terminal

步骤2:安装Git

sudo apt install git

步骤3:配置邮箱与密码讯息

git config --global user.name "yourname"
git config --global user.email "yourmail"

步骤4:注册Github

Github

步骤5:SSH认证

使用ssh命令连线github.com的SSH服务

登入名:[email protected](所有GitHub使用者此SSH使用者名称)

ssh -T [email protected]

执行后出现 Permission denied (publickey)进行设定(产生公钥)

ssh-keygen -t ecdsa -b 521 -C "[email protected]"

会看到以下直接按 ENTER

  1. Enter a file in which to save the key 
  2. Enter passphrase (empty for no passphrase)
  3. Enter same passphrase again

设定完成,再把公钥贴到Github

检视公钥

cat ~/.ssh/id_ecdsa.pub

步骤6:将内容复制到Github

打开Github ➝ 点下人像旁的小箭头 ➝ Settings

➝ 点下SSH and GPG keys

[Ubuntu][系统配置]连接至Github(ecdsa)_第1张图片


 ➝ 点下 New SSH key


 ➝ 会看到

[Ubuntu][系统配置]连接至Github(ecdsa)_第2张图片


 步骤7:确认设定是否成功

使用ssh命令连线github.com的SSH服务

ssh -T [email protected]

看到 You've successfully authenticated, but GitHub does not provide shell access. 代表设定成功

你可能感兴趣的:(ubuntu,ubuntu,git,github)