直接搬官网教程,再修改下,先啰嗦可以直接看以前的文章
https://www.cnblogs.com/poloyy/p/12185132.html
https://www.cnblogs.com/poloyy/p/12189292.html
每台计算机上只需要配置一次,程序升级时会保留配置信息, 你可以在任何时候再次通过运行命令来修改它们
git config --global user.name "John Doe" git config --global user.email johndoe@example.com
如果使用了 --global
选项,那么该命令只需要运行一次,因为之后无论你在该系统上做任何事情, Git 都会使用那些信息
当你想针对特定项目使用不同的用户名称与邮件地址时,可以在那个项目目录下运行没有 --global
选项的命令来配置
如果想要检查你的配置,可以使用 git config --list
命令来列出所有 Git 当时能找到的配置。
git config --list user.name=John Doe user.email=johndoe@example.com color.status=auto color.branch=auto color.interactive=auto color.diff=auto ...
/etc/gitconfig
与 ~/.gitconfig
)git config <key>
: 来检查 Git 的某一项配置git config user.name
John Doe
原文:https://www.cnblogs.com/poloyy/p/14769773.html