- centos
# 安装
yum install git-core
# 查看
git version
# 配置用户名和邮箱
git config --global user.name xxx
git config --global user.email xxxx@xx.com
# 生成公钥私钥对
ssh-keygen -t rsa
- debian/ubuntu
#安装
# 安装
apt-get install git
# 查看
git version
# 配置用户名和邮箱
git config --global user.name xxx
git config --global user.email xxxx@xx.com
# 生成公钥私钥对
ssh-keygen -t rsa
网友评论