强制git使用ssh 发表于 2022-01-22 更新于 2022-01-23 分类于 Linux Disqus: 本文字数: 400 阅读时长 ≈ 1 分钟 国内使用github时由于网络问题,push和pull时经常会卡,因此建议使用ssh代替http. 虽然在github页面可以直接选择使用ssh链接,但是有一些软件会使用git服务,这时就不是很好切换,我的例子是在使用cocoapods的时候没法pod install。所以尝试在gitconfig里强制使用ssh。 只需要在~/.gitconfig里加以下内容即可: 123456[url "[email protected]:"] insteadOf = https://github.com/[url "[email protected]:"] pushInsteadOf = "git://github.com/"[url "[email protected]:"] pushInsteadOf = "https://github.com/"