2023-12-06

2023-12-20  本文已影响0人  江江江123

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

--替换[]中的内容

上一篇下一篇

猜你喜欢

热点阅读