linux安装新版本git2、配置github-ssh。(centos、aws)

在这里插入图片描述

一、安装Git

1、yum默认版本git

#1.安装git
sudo yum install git -y
#2.确认Git已经安装成功
git --version

如果要安装较新版本,可以安装一个repo ,但是我这第一次尝试失败了,执行完提示找不到git2u,ius repo也连不上。而且每次yum都会显示要注册:This system is not registered with an entitlement server. You can use subscription-manager to register.
修改一个文件先解决这个提示 vi /etc/yum/pluginconf.d/subscription-manager.conf,注释掉enable
图片.png

2、yum安装新版git

到ius官网看到ius源地址已经变了,官网: https://ius.io/setup,各位注意时效,去官网看看有没有更新,不然下面的yum install 会失败

linux安装新版本git2、配置github-ssh。(centos、aws)_第1张图片

#查看各源,发现没有ius
yum repolist
#查看可以安装的gi版本,发现只有1.8
yum provides git
#安装epel源
yum install epel-release
#安装ius源执行完这个 repolist就要有ius了,provides git也可以看到2.36版
yum install https://repo.ius.io/ius-release-el7.rpm
#安装git  -y跳过确认
yum install git236 -y

linux安装新版本git2、配置github-ssh。(centos、aws)_第2张图片

二、生成SSH密钥

ssh-keygen -t rsa -C "你的git邮箱地址"

1、指定密钥保存的文件名。

可以不指定文件名,直接按enter跳过,默认保存在用户目录的.ssh文件夹
图片.png
2、输入密码
可以按enter跳过,也可以输入一些字符,但是以后每次拉取都要输入它
图片.png

三、添加SSH公钥到Git托管平台

1、运行以下命令将其显示在终端,复制SSH公钥内容

cat ~/.ssh/id_rsa.pub

2、打开github设置页面。点击新建SSH key

https://github.com/settings/keys
linux安装新版本git2、配置github-ssh。(centos、aws)_第3张图片设置key的名字,把上面的SSH公钥复制到Key输入框
linux安装新版本git2、配置github-ssh。(centos、aws)_第4张图片点击按钮完成添加

三、测试连接

ssh -T [email protected]
输入yes
输入密码
图片.png
测试成功

其他:两种常用的ssh git代理方式

两种常用的ssh git代理方式
https://www.php.cn/faq/505994.html

你可能感兴趣的:(Linux,工具,linux,git,github,ssh)