修复 GitHub Copilot 连接问题
提示
解决 GitHub Copilot 连接问题,重新开始使用 AI 辅助编程。
常见错误信息
1. 连接失败
- "无法连接到 GitHub Copilot"
- "GitHub Copilot 服务不可用"
- "身份验证失败"
2. 授权问题
- "需要重新授权 GitHub Copilot"
- "访问令牌已过期"
- "未找到有效的订阅"
快速解决方案
1. 检查网络连接
- 确保您有稳定的互联网连接
- 检查防火墙设置
- 尝试使用不同的网络
2. 验证 GitHub 账户
- 确保您已登录 GitHub
- 验证 Copilot 订阅状态
- 检查账户权限
详细故障排除步骤
重置 Copilot 连接
- Windows
- macOS
- Linux
# 清除凭据
Remove-Item "$env:APPDATA\GitHub Copilot" -Recurse -Force
# 重启 Cursor
Stop-Process -Name "Cursor"
# 清除凭据
rm -rf ~/Library/Application\ Support/GitHub\ Copilot
# 重启 Cursor
killall Cursor
# 清除凭据
rm -rf ~/.config/GitHub\ Copilot
# 重启 Cursor
pkill Cursor
更新配置
-
打开设置
.cursor/settings.json{
"github.copilot.enable": true,
"github.copilot.advanced": {
"debug": true,
"listCount": 10
}
} -
刷新令牌
- 打开命令面板 (Ctrl/Cmd + Shift + P)
- 输入 "GitHub Copilot: 重新签名"
- 按照提示完成授权
高级故障排除
代理设置
如果您使用代理:
.cursor/settings.json
{
"http.proxy": "http://proxy.example.com:8080",
"https.proxy": "http://proxy.example.com:8080"
}
日志分析
启用详细日志记录:
{
"github.copilot.trace.server": "verbose",
"github.copilot.debug": true
}
清理缓存
- Windows
- macOS
- Linux
# 清除缓存
Remove-Item "$env:APPDATA\Cursor\Cache\*" -Recurse -Force
Remove-Item "$env:APPDATA\Cursor\GPUCache\*" -Recurse -Force