随笔分类 -  Git

Git遇到SSL证书问题
摘要:Git遇到SSL证书问题 问题现象 git clone/push时,出现:server certificate verification failed. CAfile: none CRLfile: none 解决方案 先要了解一下Git配置中和SSL有关的几个关键属性: http.sslVerify
191
0
0
配置Github免密提交
摘要:配置Github免密提交 配置git使用的username和email,该信息将会在git提交记录中显示 git config --global user.name "Your username" git config --global user.email "Your email@example.
52
0
0
git报错——鉴权失败
摘要:git报错——鉴权失败 错误信息 fatal: 'https://github.com/owner_name/repo_name.git/' 鉴权失败 解决方案 鉴权失败的可能原因之一是访问token过期。 1、生成token 通过在github账号的setting -> Developer set
405
0
0
git报错——GnuTLS recv error (-110): The TLS connection was non-properly terminated
摘要:git报错——GnuTLS recv error (-110): The TLS connection was non-properly terminated 解决方案 临时办法 # 取消代理即可恢复正常 git config --global --unset http.https://github
1318
0
0