先查看本地的 config 配置文件内容
$ git config --list
...
init.defaultbranch=master
user.name=wenxxx
user.email=wenxxxg@xxx.com.cn
...
init.defaultbranch=master
user.name=wenxxx
user.email=wenxxx@xxx.com.cn
core.repositoryformatversion=0
core.filemode=false
core.bare=false
core.logallrefupdates=true
core.symlinks=false
core.ignorecase=true
remote.origin.url=git@gitee.com:xxxxx/test.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.dev.remote=origin
branch.dev.merge=refs/heads/dev
这时候看到 user.name 和 user.eamil 并不是自己的
使用以下命令删除其中一个配置项
git config --global --unset configname
删除后,再去查看就没有了
$ git config --global --unset user.name
$ git config --global --unset user.email
$ git config --list
再把自己的 git 账号和邮箱添加到 config 配置
git config --global user.name "coder"
git config --global user.email coder@example.com
完成以上就可以修改用户名。
git config --global --add configname configvalue
git config --global --unset configname
git config --global configname configvalue
git config --global configname
git config --list
原文:https://www.cnblogs.com/davis12/p/14954765.html