git 命令窗口提交错误 remote: HTTP Basic: Access denied

一直以来 版本控制从最早开始的svn 到现在的git 可谓是主力军啊

 刚开始我接触的也是svn ,慢慢迁移至git

git 配置好以后,提交步骤:

git pull origin develop // 先拉取代码

git add . ; add 后面有个空格哦

git commit -m "update" 提交到本地缓存

git push origin develop 提交到版本

如果遇到提交出现

扫描二维码关注公众号,回复: 11066386 查看本文章

remote: HTTP Basic: Access denied

说明用户名或者密码跟服务器端不匹配 验证失败

1:重置git 账号密码  ---git config --system --unset credential.helper  重置以后  再提交

2: 输入正确的账号密码进行提交

发布了42 篇原创文章 · 获赞 7 · 访问量 2万+

猜你喜欢

转载自blog.csdn.net/qq_29769851/article/details/90449556