github给项目添加成员_github部署网站

github给项目添加成员_github部署网站以下内容均在windows环境下使用目录设置https代理取消https代理查看https代理设置ssh代理取消ssh代理测试clone速度对比结果设置https代理在git窗口复制粘贴下面命令(https://github.com/Fndroid/clash_for_windows_pkg)

大家好,欢迎来到IT知识分享网。

以下内容均在windows环境下使用

目录
  • 设置https代理
  • 取消https代理
  • 查看https代理
  • 设置ssh代理
  • 取消ssh代理
  • 测试clone速度
  • 对比结果

设置https代理

在git窗口复制粘贴下面命令(https://github.com/Fndroid/clash_for_windows_pkg)

clash默认端口是7890

git config --global https.proxy socks5://127.0.0.1:代理端口

取消https代理

git config --global --unset https.proxy

查看https代理

git config --global --get https.proxy

设置ssh代理

  • 找到自己的git配置文件
    C:\Users\用户名\.ssh\config
    复制粘贴下面内容到config文件
Host github.com
 Hostname ssh.github.com
 
 IdentityFile /c/users/xxx/.ssh/id_rsa
 User git
 Port 443
 ProxyCommand   "D:\Git\mingw64\bin\connect.exe" -S 127.0.0.1:代理端口 %h %p

修改内容:

  • 将 IdentityFile后面的 /c/users/xxx/.ssh/id_rsa改为自己id_rsa文件路径,格式不要变。
  • 将ProxyCommand 后面的 “D:\Git\mingw64\bin\connect.exe” 改为自己的connect.exe路径,一般在git的安装目录下的mingw64\bin文件夹内
  • 代理端口设为自己的

取消ssh代理

清空config文件的内容

测试clone速度

大小约为500MB
ssh:git clone git@github.com:singgel/JAVA.git

https:git clone https://github.com/singgel/JAVA.git

对比结果

加速前

$ git clone git@github.com:singgel/JAVA.git
Cloning into 'JAVA'...
remote: Enumerating objects: 217, done.
remote: Counting objects: 100% (106/106), done.
remote: Compressing objects: 100% (54/54), done.
Receiving objects:  10% (22/217), 332.00 KiB | 75.00 KiB/s

加速后

$ git clone git@github.com:singgel/JAVA.git
Cloning into 'JAVA'...
remote: Enumerating objects: 217, done.
remote: Counting objects: 100% (106/106), done.
remote: Compressing objects: 100% (54/54), done.
client_loop: send disconnect: Broken pipeiB | 2.94 MiB/s

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/30031.html

(0)

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

关注微信