Git安装和配置
下载
安装
如果是 windows
记得勾选 Add a Git Bash Profile to Windows Terminal
, 其他都选默认即可
linux
和 mac
直接安装就行
Git配置用户名和邮箱
创建SSH Key
旧命令生成的 rsa
, github
不认 ssh-keygen -t rsa -C "youremail@example.com"
id_rsa
和 id_rsa.pub
分别是私钥和公钥
添加github的host
github添加SSH Key
Account settings
选择 SSH and GPG keys
填入你的公钥 id_rsa.pub
验证是否成功,在 git bash
里面输入下面的命令
Last updated