• 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
    小程序教程2
    小程序教程1
    sublime介绍常用插件和快捷键
    ionic1跨域问题
    上传文件到windows server, 导出文件到linux, 打包压缩
    windows远程管理服务winrm
    windows配置ssh服务
    前端:websocket脚本
    前端实现: 抓拍和定时弹出任务
  • 原文地址:https://www.cnblogs.com/rsapaper/p/9571081.html
Copyright © 2020-2023  润新知