ubuntu git环境搭建以及通过SSH连接Github(免密码)配置

一.git本地环境配置
1.安装git:sudo apt-get install git
2.配置用户信息
$ git config --global user.name “Your Name”
$ git config --global user.email [email protected]

二.通过SSH连接Github
1.安装ssh:sudo apt-get install ssh
2.创建密钥文件:ssh-keygen -t rsa -C “github账号邮箱”
注:默认密钥文件路径在~/.ssh,id_rsa是私钥文件,id_rsa.pub是公钥文件
3.将公钥添加到Github

  • 复制id_rsa.pub文件中的全部内容
  • 登陆到GitHub上,右上角小头像->Setting->SSH and GPG keys中,点击new SSH key,将复制的所有内容添加到其中

4.SSH测试:ssh -T [email protected]
注:若结果为 “ …You’ve successfully authenticated, but GitHub does not provide shell access”,则说明成功。

你可能感兴趣的:(Tools)