当前位置:   article > 正文

GitHub不再支持密码验证_github 关闭 passkey authenticator

github 关闭 passkey authenticator

报错如下:

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.
  • 1
  • 2
  1. 安装git
sudo yum -y install git
  • 1
  1. 生成id_rsa.pub公钥
ssh-keygen -t rsa -C "your_email@youremail.com"
  • 1
  1. GitHub配置
    在Settings->SSH and GPG keys->New SSH key,把刚刚公钥的内容复制进去。

  2. 本地配置

git config --global user.name "your_name"
git config --global user.email "your_email@youremail.com"
  • 1
  • 2
  1. 本地提交
    cd进目录,然后增加远程仓库地址,再提交。
git init
#这里要注意用SSH以git开头的
git remote add origin git@github.com:youe_name/your_repositories.git
git add -A
git commit -m "first commit"
git push origin master
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/797232
推荐阅读
相关标签
  

闽ICP备14008679号