首页 > 其他分享 >git 出现 连接超时443的情况

git 出现 连接超时443的情况

时间:2023-04-08 14:12:21浏览次数:44  
标签:git 443 global -- proxy 超时 config

解决 Failed to connect to github.com port 443:connection timed out

 

 

1)取消代理

git config --global --unset http.proxy

git config --global --unset https.proxy

(2)获得成功!

 

 

 

标签:git,443,global,--,proxy,超时,config
From: https://www.cnblogs.com/laopan123/p/17298436.html

相关文章

  • git
    我刚才提交了什么?如果你用 gitcommit-a 提交了一次变化(changes),而你又不确定到底这次提交了哪些内容。你就可以用下面的命令显示当前HEAD上的最近一次的提交(commit):(main)$ git show或者$ git log -n1 -p我的提交信息(commitmessage)写错了如果你的提交信息(......
  • github访问方法3
    1、首先下载FastGithub,windows客户可在百度网盘下载2、解压安装包,然后点击“FastGithub.UI.exe”启动即可参考资料:https://github.com/dotnetcore/FastGithub/releases......
  • GitHub默认分支问题
    github将默认分支由master改为main我们在push主分支时容易出现错误可以在仓库的setting中找到Branches在Defaultbranch中将默认分支改为master ......
  • 踩坑/github本地clone
    本机有多个项目;并且每个项目的网上仓库地址不一样,账户密码也不同。这样该如何使用git。首先每个项目的gitclone--local需要设置不同的user.email,user.name值(gitconfig--local-l查看仓库配置gitconfig--global-l查看用户配置gitconfig--system-l查看系统配......
  • Docker+Rancher + Harbor + GitLab + Jenkins 搭建CI/CD环境
    Docker+Rancher+Harbor+GitLab+Jenkins搭建CI/CD环境一.环境说明机器名称系统版本IP地址k8s版本docker版本k8s-rancher-205-10ubuntu22.04192.168.205.101.25.220.10.18k8s-master-205-11ubuntu22.04192.168.205.111.25.220.10.18k8s-worker01-205-12ubuntu22.04192.168.......
  • Git的使用介绍
    Git的使用1.git配置获取本机sshkey:ssh-keygen-t-C"<[email protected]>"配置全局name和email:gitconfig--globaluser.name"<yourName>"gitconfig--globaluser.email"<[email protected]>"2.clo......
  • 使用Drone+gitea配置自己的CICD流程
    什么是CICDCICD一般包含三个概念:持续集成(ContinuousIntegration,CI),持续交付(ContinuousDelivery),持续部署(ContinuousDeploy)。他是一种软件开发实践,核心是通过引入自动化的手段来提高软件交付效率。其最终目的是为了让工程师更快,更高质量,更简单的交付软件。持续集成在传统软......
  • python操作git
    安装模块pip3installgitpython#coding:utf-8importosfromgit.repoimportRepofromgit.repo.funimportis_git_dir#pip3installgitpythonclassGitRepository(object):"""git仓库管理"""def__init__(self,......
  • 【Git分布式版本控制工具-补充&新增IDEA操作】
    本文纲要一、Git常用命令1、Git全局设置【补充】2、获取Git仓库3、本地仓库操作4、远程仓库操作5、分支操作6、标签操作【补充】二、在IDEA中使用Git【新增】1、在IDEA中配置Git2、Git仓库操作3、.gitignore文件4、本地仓库操作5、远程仓库操作6、分支操作一、Git常用......
  • git相关问题
    UnabletonegotiatewithXX.XXX.XX.XX:nomatchinghostkeytypefound.Theiroffer:ssh-dssTherecentopensshversiondeprecatedDSAkeysbydefault.YoushouldsuggesttoyourGITprovidertoaddsomereasonablehostkey.RelyingonlyonDSAisnotag......