1、配置用户信息
git config --global user.name [username]
git config --global user.email [email]
2、查询用户信息
git config --list
3、如果push遇到在输入密码是熟错后,就会报这个错误fatal: Authentication failed for
解决办法:
git config --system --unset credential.helper
之后你在push就会提示输入名称和密码
---------------------本文来自 酒壮熊人胆 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/u011394598/article/details/80256896?utm_source=copy