美文网首页
2023-12-06

2023-12-06

作者: 江江江123 | 来源:发表于2023-12-20 18:29 被阅读0次

    git单功能合并

    写新功能
    正式服发现bug

    1.基于正式服务拉一个新分支改完,合并到测试服 测试,没有问题合并到man分支删除开发分支
    2.在开发开发,切到测试分支cherry 刚刚的提交,测试通过后,正式服cherry新的提交

    github国内无法访问

    fatal: Could not read from remote repository.
    或者ssh: connect to host github.com port 22: Connection timed out

    http设置代理:

    git config --global http.proxy [http://localhost:1080]
    --替换[]中的内容

    git@github设置代理:

    1.在~/ssh目录下新建 config文件

    1. 文件中追加
    Host github.com
      Hostname ssh.github.com
      Port 443
      User git
      ProxyCommand nc -x [proxy.server]:[proxyport] %h %p
    

    --替换[]中的内容

    相关文章

      网友评论

          本文标题:2023-12-06

          本文链接:https://www.haomeiwen.com/subject/ipjdgdtx.html