vs code + git + github
在开发电脑上创建SSH Key: $ ssh-keygen -t rsa -C "你自己注册GitHub的邮箱" 注意,如下图1,2,3处可直接回车。 如果设置了密码,后边可能每次使用 git的时候,要求输入密码。 将公钥配置到git hub 登录github,在设置中 SSH and GPG Keys 中,new ssh key, title 随意 填写,key 填写 上一步中生成的 id_rsa.pub 文件里所有的内容 在本地配置git 账号 git config --global user.name “yourname”, git config --global user.email “email@email.com ” (这里得名字和邮箱都是注册github时用的)设置全局用户名和 …