1. 设置
最后更新于:2022-04-01 11:05:49
## 目的
> 设置 Git 以便准备开始工作。
### 设置姓名和 Email
如果你以前从未用过 Git,那么你需要先做一些设置。执行下 列命令以便让 Git 知道你的姓名和 Email。如果你已经设置了 Git,那么你可以跳到下一小节。
~~~
$ git config --global user.name "Your Name"
$ git config --global user.email "your_email@whatever.com"
~~~
### 设置行尾首选项
Unix/Mac 用户:
~~~
$ git config --global core.autocrlf input
$ git config --global core.safecrlf true
~~~
Windows 用户:
~~~
$ git config --global core.autocrlf true
$ git config --global core.safecrlf true
~~~