找到你的.git的目錄下,右鍵空白位置找到“Git Bash”呼出命令行:
設(shè)置用戶名
命令格式:git config user.name "name"
例:git config user.name "hello"
驗證方式
?git config user.name ---驗證用戶名
設(shè)置郵箱地址
命令格式: git config user.email 郵箱地址
例:git config user.email hello.qq.com
驗證郵箱
git config user.email
在../.git/config文件中就會多出:
[user]
name = hello
email = hello@qq.com
修改git用戶名和郵箱
git config --global user.name "your name"
git config --global user.email "your email"