zoukankan      html  css  js  c++  java
  • git config --system --unset credential.helper 重新输入账号密码

    检查本地配置
    $ git config --local -l
    core.repositoryformatversion=0
    core.filemode=false
    core.bare=false
    core.logallrefupdates=true
    core.symlinks=false
    core.ignorecase=true
    core.autocrlf=false
    user.name=start0627
    user.email=start0627@BMC.com
    remote.origin.url=http://amGITHUBpmOURgitlab:8060/start0627/mpBMCwepy.git
    remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
    http.emptyauth=true


    Administrator@PC MINGW64 /d/GPUGO/MP/wepy/mpBMCwepy (master)
    $ git push origin master http://amGITHUBpmOURgitlab:8060/start0627/mpBMCwepy.git
    error: src refspec http://amGITHUBpmOURgitlab does not match any.
    error: failed to push some refs to 'origin'

    Administrator@PC MINGW64 /d/GPUGO/MP/wepy/mpBMCwepy (master)
    $ git remote add origin http://amGITHUBpmOURgitlab:8060/start0627/mpBMCwepy.git

    Administrator@PC MINGW64 /d/GPUGO/MP/wepy/mpBMCwepy (master)
    $ git push origin master
    remote: HTTP Basic: Access denied
    fatal: Authentication failed for 'http://amGITHUBpmOURgitlab:8060/start0627/mpBMCwepy.git/'

    解决方案:
    1. 如果账号密码有变动 用这个命令 git config --system --unset credential.helper 重新输入账号密码 应该就能解决了

    检查本地配置
    $ git config --local -l
    core.repositoryformatversion=0
    core.filemode=false
    core.bare=false
    core.logallrefupdates=true
    core.symlinks=false
    core.ignorecase=true
    core.autocrlf=false
    user.name=start0627
    user.email=start0627@BMC.com
    remote.origin.url=http://amGITHUBpmOURgitlab:8060/start0627/mpBMCwepy.git
    remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
    http.emptyauth=true

    $ git config --global user.name fengxiaole

    $ git config --global user.email fengxiaole@t.com

    win

    $ git config --global core.autocrlf false

  • 相关阅读:
    软件测试(3)--coverage graph
    st_lab1
    数据结构与算法—单向链表
    数据结构与算法—顺序表
    Python的正则表达式(re包)
    Python的内置装饰器@property、@staticmethod、@classmethod
    Python的装饰器
    Python的生成器和迭代器
    Python变量的引用、拷贝和回收机制
    git常用命令总结
  • 原文地址:https://www.cnblogs.com/rsapaper/p/9571081.html
Copyright © 2011-2022 走看看