19 lines
628 B
Plaintext
19 lines
628 B
Plaintext
docker build -t fasttunnel.client:latest -f FastTunnel.Client/Dockerfile .
|
||
docker save fasttunnel.client -o d:/fast-tunnel-client.tar
|
||
ssh-keygen -t rsa -b 4096 -C "307378529@qq.com"
|
||
|
||
|
||
|
||
|
||
# 增大Git缓冲区大小(例如设置为500MB)
|
||
git config --global http.version HTTP/1.1
|
||
git config --global http.postBuffer 524288000
|
||
git config --global http.maxRequestBuffer 100M
|
||
|
||
# 延长超时时间(例如设置为300秒)
|
||
git config --global http.lowSpeedLimit 0
|
||
git config --global http.lowSpeedTime 999999
|
||
git config --global core.compression 0
|
||
|
||
#git config --global remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
|