centos8--git
安装
yum install git
测试
git --version
设置用户名和邮箱
git config --global user.name "your username" git config --global user.email "your email"
生成密钥
ssh-keygen -t rsa -C "your email@xxx.com"
安装
yum install git
测试
git --version
设置用户名和邮箱
git config --global user.name "your username"
git config --global user.email "your email"
生成密钥
ssh-keygen -t rsa -C "your email@xxx.com"