idea中修改git提交代码的用户名
Posted yang-xiansen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了idea中修改git提交代码的用户名相关的知识,希望对你有一定的参考价值。
打开C盘里的 .gitconfig文件
修改当前项目的用户名和邮箱地址:
git config user.name "username"
git config user.email "email"
修改全局用户名和邮箱地址:
git config --global user.name "username"
git config --global user.email "email"
查看git用户名和邮箱地址命令:
git config user.name
git config user.email
以上是关于idea中修改git提交代码的用户名的主要内容,如果未能解决你的问题,请参考以下文章