git如何配置用户和邮箱(git配置工程用户名)
在新机器上push代码遇到了报错:Git The requested URL returned error: 403
,今天小编就来说说关于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"
免责声明:本文仅代表文章作者的个人观点,与本站无关。其原创性、真实性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容文字的真实性、完整性和原创性本站不作任何保证或承诺,请读者仅作参考,并自行核实相关内容。文章投诉邮箱:anhduc.ph@yahoo.com