当前位置:   article > 正文

使用git push推送到远程仓库发生Authentication failed错误_git push authentication failed

git push authentication failed
  • 问题描述:

    remote: chen_sheng: Incorrect username or password (access token)
    fatal: Authentication failed for 'https://gitee.com/chen__sheng/about_company_note.git/'
    
    • 1
    • 2
    • 错误原因(reason):git push -u origin master,第一次向远程git仓库的master分支上提交需要username和password,如果输入错误的username或者password就会触发这个错误。

    • 解决办法(solution):

    1.	输入:git config --system --unset credential.helper命令。
    	-	命令含义:帮助清除本地已经缓存的username和password.
    
    2.	再输入:git  push  -u  origin master(或其他分支名,如dev/xxx)。
    	-	重新输入正确是username和password就可以了,不需要重新设置username和password.
    	
    3.	在git push之前设置一个SSH的公钥到GitHub/GitLab/Gitee上
        - 具体设置方法:
            - 1)输入:ssh-keygen -t rsa -C "[youremail@example.com](mailto:youremail@example.com)" 
            	-	创建SSH Key ,RSA的公钥和私钥地址的具体地址,输入后git终端会提示.
            - 2)然后在本地电脑上找到public key,复制里面的内容,到Github/GitLab/Gitee的安全设置,”SSH公钥“里面添加一个公钥就可以了,公钥的标题和公钥的具体内容写个年月日干什么就行了,如2020年1月1日_publibc_key_insert。
    
    4.	查看用户信息: git config --list
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

不知道如何设置Github/GitLab/Gitee的同学可以另行百度/Google/Bing。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/940741
推荐阅读
相关标签
  

闽ICP备14008679号