列出并编辑当前配置
Git config 允许你自定义 git 的工作方式。它通常用于设置你的姓名和电子邮件或收藏编辑器或如何进行合并。
要查看当前配置。
$ git config --list
...
core.editor=vim
credential.helper=osxkeychain
...
要编辑配置:
$ git config <key> <value>
$ git config core.ignorecase true
如果你希望所有存储库的更改都为 true,请使用 --global
$ git config --global user.name "Your Name"
$ git config --global user.email "Your Email"
$ git config --global core.editor vi
你可以再次列出以查看更改。