You‘ve successfully authenticated, but GitHub does not provide shell access.问题解决

这篇具有很好参考价值的文章主要介绍了You‘ve successfully authenticated, but GitHub does not provide shell access.问题解决。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

问题与原因

https://github.com/settings/keys已经配置了本地的git 通过git-keygen -t rsa命令生成的秘钥已经配置,而使用 ssh git@github.com命令得到如下的反馈

$ ssh -T git@github.com
Hi xxx! You've successfully authenticated, but GitHub does not provide shell access.

这时候只看到successfully以为已经配好了密钥,以后项目都可以连接github了,但其实后面 does not provide shell access告知了不可以使用shell访问。
然后使用项目在git push 的时候将还是会提示输入账号密码。并且现在 git 也不允许 http 连接,所以提供账号密码也没办法 push。

$ git push -u origin main
Username for 'https://github.com': xxx@qq.com
Password for 'https://xxx@qq.com@github.com': 
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/xxx/xxx.git/'

这一段的意思你原先的密码凭证从2021年8月13日开始就不能用了,必须使用个人访问令牌(personal access token),就是把你的密码替换成token

解决方案

  1. 第一种是根据提示的来使用token的解决方案:作者在这篇文章有提供解决github配置ssh密钥后仍然需要登录
  2. 第二种可以通过以下命令添加远程仓库
git remote set-url origin git@github.com:用户名/仓库名.git

注意这里并非普通的http格式添加远程仓库
然后查看远程仓库可以发现已经改变了格式:文章来源地址https://www.toymoban.com/news/detail-508804.html

git remote -v                                                     
origin	git@github.com:xxx/xxx.git (fetch)
origin	git@github.com:xxx/xxx.git (push)

到了这里,关于You‘ve successfully authenticated, but GitHub does not provide shell access.问题解决的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包