修改git账号密码后,进行git提交时报错
$ git push origin develop
remote: HTTP Basic: Access denied
fatal: Authentication failed for 'http://xxx/web.git/'
- 重新设置下git信息
git config --global user.name "your name"
git config --global user.email "your email"
- 再次提交
$ git push origin develop
这时会弹出一个窗口,要求输入账号密码,输入后,提交成功
标签:origin,Git,时报,--,git,提交,账号密码 From: https://www.cnblogs.com/codejnp/p/18186558