1. Git 设置
2018-08-04 14:12 更新
目的
设置 Git 以便准备开始工作。
设置姓名和 Email
如果你以前从未用过 Git,那么你需要先做一些设置。执行下 列命令以便让 Git 知道你的姓名和 Email。如果你已经设置了 Git,那么你可以跳到下一小节。
$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"
设置行尾首选项
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
以上内容是否对您有帮助:
← Git 关于
更多建议: