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

  • 相关阅读:
    最近吸收的html && CSS 知识
    Visual C++ 20111021
    递归变位数(练习)
    effective C++ 第五章
    二叉树的非递归遍历
    插入排序补充
    数的乘方,简单背包,组合
    在这个病毒猖獗的年代……
    元宵夜游城隍庙
    Cherish your work
  • 原文地址:https://www.cnblogs.com/rsapaper/p/9571081.html
Copyright © 2011-2022 走看看