有没有办法告诉git将更改推送到github远程服务器的速度要快一点。即使是在极小的轨道应用程序中对少数文件进行微小更改,也需要更长的时间(约8-10秒)。
答案 0 :(得分:11)
尝试创建目录~/.ssh/control
,然后将其添加到~/.ssh/config
:
Host github.com
ControlMaster auto
ControlPath ~/.ssh/control/%r@%h:%p
ControlPersist 3600
这将导致ssh重用与github的现有连接一小时,这将消除在此期间重新进行身份验证所需的时间。
答案 1 :(得分:1)
如果您使用的是http / https协议,则应尝试使用ssh协议。