git是广受欢迎的开源 VCS (Version Control System)。

在Windows安装

安装过程略。
装好后务必执行下面两行代码,设置好你的用户名和邮箱。这台机器上所有的Git仓库都会使用这个配置,当然也可以对某个仓库指定不同的用户名和Email地址。

  1. git config --global user.name "Your Name"
  2. git config --global user.email "email@example.com"