一、设置用户名和邮箱
git config --global user.name "George"git config --global user.email george@example.com
说明:“--global” 选项表示该系统任何操作都使用该次配置信息。
二、文本编辑器
未配置,Git使用默认编辑器Vim。
git config --global core.editor emacs
三、查看配置
git config --list
作者:蚂蚁窝大梦想
链接:https://www.jianshu.com/p/43ba8cc0a830