初次使用需要设置姓名和邮箱
$ git config --global user.name "git用户名"
$ git config --global user.email 邮箱地址
$ cd ~/.ssh
$ ls
$ ssh-keygen -t rsa -C "邮箱地址"
查看公钥:cat id_rsa.pub 或者vim id_rsa.pub
$ vim id_rsa.pub
:wq
$ ssh -T git@github.com //查看安装成功
复制 id_rsa.pub文件内容到githubkey里add就可以了
打开github
gi
image.png
image.png
image.png
添加完 SSH Key 以后,你就可以开始使用 SSH 方式 clone 代码了,之后 commit 提交代码再也不用输入密码了
网友评论