Git -- 修改git账号密码后,进行git提交时报错

修改git账号密码后,进行git提交时报错

$ git push origin develop
remote: HTTP Basic: Access denied
fatal: Authentication failed for 'http://xxx/web.git/'
  1. 重新设置下git信息
git config --global user.name "your name"
git config --global user.email "your email"
  1. 再次提交
$ git push origin develop

这时会弹出一个窗口,要求输入账号密码,输入后,提交成功

posted @ 2024-05-11 15:15  codejnp  阅读(55)  评论(0编辑  收藏  举报