方式一 yum源安装 yum install git 配置 # 用户名 git config --global user.name "1165069099@qq.com" # 邮箱 git config --global user.email "1165069099@qq.com" window密钥生成 ssh-keygen -t rsa -C "1165069099@qq.com" 将密钥上传到服务器 github:/root/.ssh/id_rsa.pub 查看用户名 git config user.name 查看邮箱 git config user.email …