@middlered 在 分享一个 GitHub Copilot Student 继续使用 5.3 Codex的方法 中发帖
不知道有没有其他人发现过,总之是通过强行锁 Copilot CLI 的老版本来使用,实测现在 @github/copilot@0.0.420 仍然能用。
[image]
以及为了防止 Copilot 自动更新,我用 docker 隔离环境写了一个 devcontainer 的配置文件锁死了 Copilot 的自动更新目录,顺便持久化了容器内 Copilot 的数据
{
"name": "node environment",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/devcontainers/features/node:1": {}
},
"mounts": [
"source=${localWo...