其他分享
首页 > 其他分享> > [Git] 013 远程仓库篇 第零话 使用前的一些配置

[Git] 013 远程仓库篇 第零话 使用前的一些配置

作者:互联网

0. 前言

1. 迟来的命令,关于“身份象征”

1.1 user.name

$ git config --global user.name "York"

1.2 user.email

$ git config --global user.email "york@email.com"

1.3 可以查看自己的身份


2. 创建 SSH Key

2.1 输入命令

$ ssh-keygen -t rsa -C "york@email.com"


2.2 复制公钥


3. 在 GitHub 上添加公钥

3.1登陆 GitHub

  1. 点击右上角的头像
  2. 点击 "Settings"


3.2 选择 "SSH and GPG keys"


3.3 点击右上角的 "New SSH Key"


3.4 填入信息




标签:Git,第零,york,013,SSH,Key,com,email,user
来源: https://www.cnblogs.com/yorkyu/p/10827317.html