具体错误
D:\github\openjdk8-x86-amd64-arm64-aarch64>git push origin master info: please complete authentication in your browser... fatal: An error occurred while sending the request. fatal: The request was aborted: Could not create SSL/TLS secure channel. Username for 'https://github.com': quantum6 Password for 'https://quantum6@github.com': remote: Support for password authentication was removed on August 13, 2021. Plea se use a personal access token instead. remote: Please see https://github.blog/2020-12-15-token-authentication-requireme nts-for-git-operations/ for more information. fatal: Authentication failed for 'https://github.com/quantum6/openjdk8-x86-amd64 -arm64-aarch64/'
原因是不支持密码方式了,改用令牌token
产生KEY
打开git-bash输入命令:
ssh-keygen -t rsa -b 4096 cat ~/.ssh/id_rsa.pub ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDE3Xu+zoNiZFmASBRDK+vKSTYkuqFPH8VisOfS/VH0jEdPoIXK9wAmVQwjy1EYtzInCUFbVBpdKM5GshPQrKhkLTA9oAbnANfLVtTx1iA10q4G5KyfB9RLgp8fG5nJDrZEvNLFwp+9MCwyU55jcgdbcOQyJQXA3GWGKE4c+WNViAUmrPpeYGvVmz5WLh8lCpZFpPjlPZpvjSTJfw== quantum6@WIN7 GITHUB新建SSHKEY Sign in to GitHub · GitHub
SSH Keys
把cat内容复制到网页。
收到的邮件
The following SSH key was added to your account: quantum6 SHA256:wfqWASnmKIG1jDntX9bxB2xTJKOwWp4Z8BbuONCGpbk If you believe this key was added in error, you can remove the key and disable access at the following location: https://github.com/settings/keys
新建令牌。直接打开
https://github.com/settings/tokens/new
修改Expiration为No expiration(或者其他),所有的都选上(以后搞清楚了再定制新的)。点击Generate token。复制token令牌,类似:
ghp_EGL3ejUIdtAUwMs1fe6mIeefc2Amn3f9SvB
修改配置,更新代码
全网首发:github已经设置了令牌token,为什么还要验证用户密码_柳鲲鹏-CSDN博客