私人存储库失败的git身份验证



我试图在桌面上克隆我的git集线器存储库。我能够克隆任何公共存储库,但是克隆我的私人存储库是给我以下错误

command:  
  git clone https://github.com/Anjul-Pathak/Test.git
error:
  remote: Repository not found.
  fatal: Authentication failed for 'https://github.com/Anjul-Pathak/Test.git/'
My Config file details are as follows:
git config --list
core.symlinks=true
core.autocrlf=true
core.fscache=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
help.format=html
rebase.autosquash=true
http.sslbackend=schannel
http.sslcainfo=/bin/curl-ca-bundle.crt
diff.astextplain.textconv=astextplain
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.smudge=git-lfs smudge -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
http.sslverify=false
http.proxy=https://UserId:Pwd@proxy.company.com:8080
https.sslverify=false
https.proxy=https://UserId:Pwd@proxy.company.com:8080

相同的ID PWD正在GitHub Web界面上工作。我尝试从Windows凭据管理器中删除保存的凭据,但没有运气。请帮助

您的配置列表未显示您的用户名。您可以尝试使用git config --global user.name "John Doe"git config --global user.email johndoe@example.com

设置用户

最新更新