Git安装配置
apt-get install git # 安装Git
git --version # 安装成功后显示版本 git version 2.34.1
git config --global user.name "name" # 配置用户名
git config --global user.email "email" # 配置用户邮箱
git config --list # 查看全局配置
ssh-keygen -t rsa -C email # 生成ssh-key 目录root/.ssh/id_rsa.pub
到Github添加ssh-key 头像->settings->SSH and GPG keys->New SSH key
测试连接文章来源:https://www.toymoban.com/news/detail-543293.html
ssh -T git@github.com # 测试链接
You've successfully authenticated, but GitHub does not provide shell access. # 成功
新增配置(上一步成功便不需要此步骤)文章来源地址https://www.toymoban.com/news/detail-543293.html
cd root/.ssh
vim config # 写入以下内容
Host github.com
User jeniluo@163.com
Hostname ssh.github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Port 443
到了这里,关于Ubuntu22.04安装Git及配置的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!