1 安装完git后,需要先添加用户信息;
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
email比较重要,他是id,所有commit都用它来标记
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
email比较重要,他是id,所有commit都用它来标记