1.使用Git时 SSL certificate problem错误的解决方法
这里其实是电脑没有安装对应的ca证书,所以无法通过https连接到git服务器。
这里通过设置git的ssl验证跳过了这个错误(win下):
git config --global http.sslVerify false
2.vi修改文件,保存文件时,提示“readonly option is set”的解决方法。
按Esc键,输入 :set noreadonly,然后就能正常保存了,你可以输入 :wq 来保存文件了。