目 录CONTENT

文章目录
Git

Git 设置代理

hideonheart
2023-02-21 / 0 评论 / 1 点赞 / 15 阅读 / 0 字

代理设置

  1. 使用命令直接设置代理

--global 表示全局,不需要可以不加

# socks
git config --global http.proxy 'socks5://127.0.0.1:1080' 
git config --global https.proxy 'socks5://127.0.0.1:1080'
# http
git config --global http.proxy http://127.0.0.1:1080 
git config --global https.proxy https://127.0.0.1:1080

# 只对github.com使用代理,其他仓库不走代理
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080
git config --global https.https://github.com.proxy socks5://127.0.0.1:1080
# 取消github代理
git config --global --unset http.https://github.com.proxy
git config --global --unset https.https://github.com.proxy
  1. 直接修改~/.gitconfig文件
[http]
proxy = socks5://127.0.0.1:1080
[https]
proxy = socks5://127.0.0.1:1080
  1. 取消代理

SSH协议代理设置
修改ssh配置文件 ~/.ssh/config
没有的话新建一个文件
Windows ssh配置文件路径:C:\Users\你的用户名.ssh\config
Linux ssh配置文件路径:/home/你的用户名/.ssh/config

ProxyCommand connect -S 代理地址:端口 %h %p

example

# 全局
# ProxyCommand connect -S 127.0.0.1:1080 %h %p
# 只为特定域名设定
Host github.com gitlab.com
ProxyCommand connect -S 127.0.0.1:1080 %h %p
# -S 代表走socks代理。( -H 实现http和https的仓库的克隆)
# 多个地址设置:Host后面使用空格隔开,而不是,

多账号设置

生成公私钥,并在对应账号配置公钥

# 生成两个邮箱对应的ssh公私钥
ssh-keygen -t ed25519 -C "1@email"
ssh-keygen -t ed25519 -C "2@email"

example

# Host:仓库网站的别名,随意取
# HostName:仓库网站的域名(PS:IP 地址应该也可以)
# User:仓库网站上的用户名
# IdentityFile:私钥的绝对路径
Host aa.github.com 
Hostname ssh.github.com
Port 22
User git
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_aa
ProxyCommand connect -S 127.0.0.1:1080 %h %p

Host bb.github.com 
Hostname ssh.github.com
Port 22
User git
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_bb
ProxyCommand connect -S 127.0.0.1:1080 %h %p

test

$ ssh -vT [email protected] 
$ ssh -vT [email protected] 
$ ssh -vT [email protected] 
1

评论区