1.github每次push都需要输入用户名和token的解决方法
push前,执行下面命令 :
bash
git config --global credential.helper store
之后再输入一次用户名和token之后,就不用再输入了。
2.git push时遇到"fatal: unable to access 'https://github.com/XXXXXXX/': gnutls_handshake() failed: The TLS connection was non-properly terminated."错误时解决方法
命令行输入:
bash
git config --global credential.helper store
重新验证用户名、token就可以解决。