Connection was reset
git fatal unable to access .git openssl sslread :connection was reset, errno 10054
出错原因是由于SSL证书没有被验证,这时候需要在命令行输入。
git config --global http.sslVerify “false”
之后再重新提交即可。
Timeout
问题提示: Failed to connect to github.com port 443:connection timed out
解决方法,取消全局代理,在命令行输入如下两个命令。
git config --global --unset http.proxy
git config --global --unset https.proxy
查看Github文件的历史信息
当配置好本地文件和GitHub远程仓库的内容之后,只需要在本地命令行,进入到对应的文件夹中,输入
git log 文件名
就可以了。
例如: