issues
Missing or invalid credentials.
应该是原来创建的token过期了,直接执行步骤3即可
1. 创建token并拷贝到github
1. cd ~/.ssh
2. ssh-keygen -t rsa -C 'xxxxx@qq.com'
3. 执行上一命令后会生成一下文件id_rsa和id_rsa.pub,将id_rsa.pub拷贝到github
note:如果.pub文件已经存在,直接拷贝即可
2. 免密登录
#设置git 缓存
#默认缓存15分钟
git config --global credential.helper cache
#可以更改默认的密码缓存时限
git config --global credential.helper 'cache --timeout=3600'
pull时再输入一遍用户名和token以后就不用输入了文章来源:https://www.toymoban.com/news/detail-776100.html
references:
https://cloud.tencent.com/developer/article/2235142
https://www.cnblogs.com/convict/p/14888283.html文章来源地址https://www.toymoban.com/news/detail-776100.html
到了这里,关于git 免密登录/密钥失效/Missing or invalid credentials.的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!