Git提交异常解决方案ssh: connect to host gitlab.xxxx.com port 22: Connection timed out / Integrate the remote

导读:本篇文章讲解 Git提交异常解决方案ssh: connect to host gitlab.xxxx.com port 22: Connection timed out / Integrate the remote,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

Git提交异常解决方案

  1. Git错误提示:Integrate the remote changes…

    由于本地和远程仓库两者代码文件不同步,因此需要先pull,进行合并然后再进行push
    先使用pull命令,再使用push命令
    git pull --rebase origin master
    git push -u origin master
    
  2. Git错误提示:ssh: connect to host gitlab.xxxx.com port 22: Connection timed out

    将ssh方式修改为https,这种方式解决了我的问题
    1.git config --local -e
    2.将配置文件的url = git@github.com:username/repo.git一行改为: url = https://github.com/username/repo.git
    

在这里插入图片描述

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/118697.html

(0)
seven_的头像seven_bm

相关推荐

发表回复

登录后才能评论
极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!