前言
好久没有用github来管理自己的仓库了,今天突发奇想,把自己在码云的仓库的更新的内容,也要推送到github上面,保持两个仓库的一致性。但是今天推送代码到github上面的时候,却一直报错!
remote: Support for password authentication was removed on August 13,2021. Please use a personal access token instead. remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information. fatal: Authentication failed for ‘https://github.com/zhousujuan/full-stack-front-end-learning.git/’
一、报错截图
截图翻译:
remote: Support for password authentication was removed on August 13,2021. Please use a personal access token instead.
远程:对密码身份验证的支持已于 2021 年 8 月 13 日删除。请改用个人访问令牌。
remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.
远程:有关详细信息,请参阅 https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/。
fatal: Authentication failed for 'https://github.com/zhousujuan/full-stack-front-end-learning.git/'
致命:"https://github.com/zhousujuan/full-stack-front-end-learning.git/"的身份验证失败
二、报错解决
git remote set-url 远程仓库的名称(默认为origin) https://刚刚复制的口令@github.com/你的仓库的用户名称/仓库名称.git
====》到这儿,就结束了
总结
要紧跟时代的步伐啊,不然到时候自己的项目或者什么出问题了,都不知道什么原因。这里提醒自己要记得定期查看关注自己项目技术的官方消息,以免一些更新我们不知道,导致错误。
|