安装 Windows 此处下载 双击exe 一直下一步安装
Linux Linux 默认安装的Git 版本一般为1.8*, 可以通过以下方式升级
首先,把老版本的 Git 卸掉。 1 2 sudo yum -y remove git sudo yum -y remove git-* 添加 End Point 到 CentOS 7 仓库 yum -y install https://packages.endpointdev.com/rhel/7/os/x86_64/endpoint-repo.x86_64.rpm yum -y install git check version git version 配置Git Set your name. git config --global user.name "Your Name" Set your email address. git config --global user.email "user@exmample.com" Verify the settings. git config --list Git 配置SSH key 连接Github HTTPS URL 和 SSH URL 在使用 git clone 项目时,可以使用仓库的 HTTPS URL 也可以 使用 SSH URL HTTPS URL,例如:https://github.com/<username>/<repo name>.git SSH URL,例如:git@github.com:<username>/<repo name>.git
...