git 提交出现的问题解决方法

问题一
! [rejected]        master -> master (fetch first)
error: failed to push some refs to 'https://gitee.com/HuChile/shangxian-erp.git'
解决方法
git push -u origin master -f
问题二
unable to access 'https://gitee.com/zy8080/springbootjdbc.git/': The requested URL returned error: 403
解决办法

控制面板--》用户账户--》管理windows凭据--》找到git的凭据,删除他,后面push的时候会再弹出填账号密码的框


image.png
git config --global user.name '你的用户名'
git config --global user.email '你的邮箱'

你可能感兴趣的:(git 提交出现的问题解决方法)