赞
踩
详细报错:
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.
fatal: Authentication failed for 'https://github.com/XXX/XXX.git/'
报错中给出了提示,GitHub的密码验证在2021年的八月13日被移除了,给出了相关的GitHub手册的链接,但是我看了感觉也没得到什么提示。后来还是在外网并结合其他的文章尝试出了方法。
首先,你得有一个token,token的具体生成方法PAT (Personal Access Token)
有了pat token 之后只需要将命令进行替换
git remote add origin https://github.com/xxx/xxx.git
# 替换为
git remote set-url origin https://<your_token>@github.com/<USERNAME>/<REPO>.git
# <your_token> 为自己的pat token ,<USERNAME>为目标用户名,<REPO>为目标仓库
应该就可以成功了。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。