标签:add request http remote ima 导致 img return 查看
1.git push 报错:RPC failed; HTTP 401 curl 22 The requested URL returned error: 401 The remote end hung up
2.原因:用户名和密码输错,导致验证不通过,没有权限推送
3.解决:
(1)删除原始远程数据源:
git remote rm origin
(2)重新添加远程数据源,即在http后面,git前面加上用户名@(shenyf@):
git remote add origin http://shenyf@git.intra.xxx-view.cn:3000/xxx/xxx_xx.git
(3)查看此时远程数据源,已经添加成功:
git remote -v
(4)此时再执行push操作,会重新提示输入用户名和密码,输入正确用户名和密码即可,若输错,仍然不提示,依旧显示推送失败
标签:add request http remote ima 导致 img return 查看
原文地址:https://www.cnblogs.com/shenyf/p/9876307.html