问题
remote: Support for password authentication was removed on August 13, 2021.
remote: Please see https://docs.github.com/en/get-started/getting-started-with-git/about -remote-repositories#cloning-with-https-urls for information on currently recommended modes of authentication.
大体意思就是:2021年8月13日就已经废除了git使用密码登录github的方式
如何解决
可以使用token登录的方式,就是把你的密码替换成token即可
首先找到github中的setting
其次最下面找到开发者设置:
然后找到 Personal access tokens,点击生成新token(我的已经生成过了)
再勾选 repo和delet_repo
repo:要使用token从命令行访问仓库
delete_repo:要使用token从命令行删除仓库
最后保存自己的token,用token登录即可。