- 2021年3月以后,git 不支持使用username 和 password 访问GitHub私有库了,一种解决此问题的方法是使用access_token, 生成access_token方式参考链接
- 利用acess_token去clone项目
git clone http://tokens-name:access_token@github.com/YOUR-USERNAME/YOUR-REPOSITORY
其中tokens-name 与YOUR-USERNAME都是指用户名
注意:
链接中使用的是
http
不是https
经实测只是用access_token(如下)可以clone项目,但是push时会出错
git clone http://access_token@github.com/YOUR-USERNAME/YOUR-REPOSITORY