在新机器上push代码遇到了报错:Git The requested URL returned error: 403 ,今天小编就来说说关于git如何配置用户和邮箱?下面更多详细答案一起来看看吧!

git如何配置用户和邮箱(git配置工程用户名)

git如何配置用户和邮箱

问题

在新机器上push代码遇到了报错:

Git The requested URL returned error: 403

网上百度,需要配置每个工程git用户名

配置单个工程git用户名修改 .git/config

找到

[remote "origin"] url = https://github.com/bbb/example.git

改为

[remote "origin"] url = https://bbb@github.com/bbb/example.git

查看用户名和邮箱地址

$ git config user.name $ git config user.email

修改用户名和邮箱地址

git config --global user.name "mitsuhide" git config --global user.email "mitsuhide@126.com"

,