@ -6,4 +6,15 @@
# 使用
```shell
# 设置用户名
git config --global user.name "你的名字"
# 设置邮箱
git config --global user.email "你的邮箱"
# 拒绝提交包含混合换行符的文件
git config --global core.safecrlf true
# 提交时转换为LF,检出时不转换
git config --global core.autocrlf input
```
在项目目录下执行 `gcz` 按提示操作。