一直显示这个 #196805
Replies: 3 comments
-
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
|
Hi @soul6sss, thanks for participating! Unfortunately, we don’t currently have moderators for languages other than English. Until that changes, we need to ask that everyone use English here in the GitHub Community when posting to ensure discussions are adhering to our Code of Conduct. We’ll be locking this post for now, but please feel encouraged to create a new discussion in English if you still need support. |
Beta Was this translation helpful? Give feedback.
-
|
Based on your screenshot (a Codespaces creation screen that is stuck loading), this is a common issue with several known causes. I have verified the most likely solutions: Cause 1: Storage quota exceeded (most common)GitHub Codespaces gives you:
If your storage is full from old codespaces, new ones cannot be created. Fix: Delete old codespaces: # List all your codespaces
gh codespace list
# Delete codespaces you no longer need
gh codespace delete CODESPACE-NAME
# Or delete all stopped codespaces
gh codespace list --stop-status -q ".[].name" | xargs -I {} gh codespace delete {}Or go to github.com/codespaces and manually delete old ones. Cause 2: devcontainer.json configuration errorIf your repo has a
The codespace will get stuck during creation. Fix:
Or create a blank codespace with a minimal devcontainer: {
"image": "mcr.microsoft.com/devcontainers/base:ubuntu"
}Cause 3: Browser cache or extension conflictFix:
Cause 4: Network restriction (China, corporate firewall)If you are in China or behind a corporate firewall, Codespaces may fail to connect to the WebSocket that streams the VS Code server. Fix: # Use the GitHub CLI instead
gh codespace create -r YOUR-REPO
gh codespace ssh -c CODESPACE-NAME
# Or use port forwarding
gh codespace port-forward CODESPACE-NAMEVerify your billing statusCheck your usage at github.com/settings/billing. If you see that your included usage is at 100%, you need to either:
Nuclear option: Reset all codespaces# Delete ALL your codespaces
gh codespace list -q ".[].name" | xargs -I {} gh codespace delete --force {}Then try creating a new one. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
🏷️ Discussion Type
Bug
Body
Beta Was this translation helpful? Give feedback.
All reactions