一、设置用户名和邮箱
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
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
本文标题:Git初次使用配置
本文链接:https://www.haomeiwen.com/subject/xzgxvftx.html
网友评论