美文网首页
remote: Access denied

remote: Access denied

作者: malgee | 来源:发表于2021-09-10 09:55 被阅读0次
    pod repo add MGSpecs https://gitee.com/xxx/MGSpecs.git
    Cloning spec repo `MGSpecs` from `https://gitee.com/xxx/MGSpecs.git`
    [!] /usr/local/bin/git clone https://gitee.com/malgee/MGSpecs.git -- MGSpecs
    
    Cloning into 'MGSpecs'...
    remote: Access denied
    fatal: unable to access 'https://gitee.com/xxx/MGSpecs.git/': The requested URL returned error: 403
    

    出现这个问题的原因是: 远程服务端的用户名和密码与当前系统中git保存的用户名和密码有冲突

    解决方案:

    1. 如果账号密码有变动 用这个命令 git config –-system –-unset credential.helper重新输入账号密码 应该就能解决了
    2. 如果用了第一个命令 还不能解决问题那么 用这个命令: git config –-global http.emptyAuth true

    相关文章

      网友评论

          本文标题:remote: Access denied

          本文链接:https://www.haomeiwen.com/subject/mnwiwltx.html