Q1.git config --global user.email "邮箱";git config --global user.name "名字"
安装好git后,在命令行使用下面的命令设置git自己的名字和电子邮件。这是因为git是分布式版本控制系统,所以,每台机器都必须自报家门:你的名字和Email地址,设置完成之后使用git config -l查看是否设置成功
Q2.使用git clone时候报错gnutls_handshake() failed: The TLS connection was non-properly terminated
解决方法: 使用git config --global --unset https.https://github.com.proxy和git config --global --unset http.https://github.com.proxy 重置代理