GitHub Outage Map
The map below depicts the most recent cities worldwide where GitHub users have reported problems and outages. If you are having an issue with GitHub, make sure to submit a report below
The heatmap above shows where the most recent user-submitted and social media reports are geographically clustered. The density of these reports is depicted by the color scale as shown below.
GitHub users affected:
GitHub is a company that provides hosting for software development and version control using Git. It offers the distributed version control and source code management functionality of Git, plus its own features.
Most Affected Locations
Outage reports and issues in the past 15 days originated from:
| Location | Reports |
|---|---|
| Veigné, Centre | 1 |
| Paris, Île-de-France | 1 |
| Saint-Paul, Réunion | 2 |
| Mexico City, CDMX | 1 |
| León de los Aldama, GUA | 1 |
| Créteil, Île-de-France | 1 |
| Trichūr, KL | 1 |
| Brasília, DF | 1 |
| Lyon, Auvergne-Rhône-Alpes | 1 |
| Tel Aviv, Tel Aviv | 1 |
| Rive-de-Gier, Auvergne-Rhône-Alpes | 1 |
| Itapema, SC | 1 |
| Cleveland, TN | 1 |
Community Discussion
Tips? Frustrations? Share them here. Useful comments include a description of the problem, city and postal code.
Beware of "support numbers" or "recovery" accounts that might be posted below. Make sure to report and downvote those comments. Avoid posting your personal information.
GitHub Issues Reports
Latest outage, problems and issue reports in social media:
-
Julian Goldie SEO (@JulianGoldieSEO) reportedHALLMARK SKILL: Fix Ugly AI Websites in One Command 99% of AI websites are garbage. This free skill builds the 1%. You know the look: purple gradient, centered hero, 3 feature cards. Visitors have seen that page 100 times this month. They stop trusting it instantly. Hallmark fixes it. One free open-source skill (7,000 GitHub stars). Plug it into Claude, Cursor, or any agent. It works like a design department: → An art director that asks 3 questions before any code → 21 page layouts — never uses the same one twice → 20 real themes with proper fonts and colors → 57 quality checks before you ever see the page No fake stats. No invented testimonials. No template heroes. Your AI already codes better than most humans. It just never learned taste. This installs taste in one command. Save this. You'll want it later. 💬
-
Ben Anthony (@benjamin_ACD) reported@0x15f Most of GitHub is down, but for some reason they've only called it as Copilot.
-
1PercentBetterToday (@1PercentBetterT) reportedShipped something small but real today: our GitHub repo had zero link back to the live site. Checked why our 275 SEO pages weren't showing up on Google after 5+ days and found it - IndexNow only pings Bing, never Google. Fixed the free backlink, now chasing the real fix (Search Console)
-
Lee Penkman (@LeeLeepenkman) reportedThere's been a lot of talk of how weird Sol is, but I... inside of my harness, Codex Infinity, I have not had any issues and I do some serious multi-disc clean up stuff, like really high stakes stuff I get it to do and it does it just fine. lee101/codex on github. i fixed some prompting too so it is even more aggressive at working for you.
-
Kshitij Mishra | AI & Tech (@DAIEvolutionHub) reportedA NEW OPEN-SOURCE TOOL JUST MADE VIDEO DOWNLOADING RIDICULOUSLY SIMPLE. It's called ReClip. A self-hosted GitHub project that lets you download videos (or audio) from 1,000+ websites without ads, trackers, or subscriptions. Just paste a URL and you're done. It supports platforms like YouTube, TikTok, Instagram, X, and hundreds more. What you get: ↳ Download videos as MP4 or extract audio as MP3 ↳ Choose the video quality before downloading ↳ Queue multiple links with batch downloads ↳ Clean browser-based interface ↳ Lightweight self-hosted deployment ↳ No login, no limits, no hidden catches The growth has been impressive too: 📈 1,400+ GitHub stars in just 9 days 📦 239+ forks already That traction isn't surprising. For years, people have had to deal with download sites packed with ads, pop-ups, fake buttons, and privacy concerns. ReClip takes a completely different approach. You host it yourself. Your files stay on your machine. Your data stays yours. No premium paywall. No data collection. No endless upsells. Just a lightweight open-source project released under the MIT License and built to do one job well. Free. Open source. And likely to become a favorite for anyone who downloads media regularly. 👇
-
LOVE&PEACE (@SuddyNC) reported@chuckuddin I think u have to consider the fact that coding has been kinda open to the point where people were using other people's code from stackoverflow and open source github repos even before ai. if you're just looking for a solution to a problem in coding, ai does that part for you
-
Remco (@remcoros) reported@DavidFBailey @pastorcoin On my testnet 4 faucet (protected with X/github/discord login, min. 3 months account age, only 1 withdraw per account), I had a few very huge spikes. As if they used a bunch of fake accounts to get some testnet btc. Like why?!? It's worthless anyway :D
-
Dhruv Ahuja (@DhruvAhuja2003) reportedgithub is down again it’s time to go home
-
Dave (@dav1d_small) reported@vercel deployments with github not working… 😒 fix pls
-
Steven Grant (@1stevengrant) reported@owenconti @laravel github had issues but those now resolved and my repo connections are now totally fubarred
-
Peni (@Penivera001) reported@github Commit before and after a major change/fix
-
J.D. Salbego (@JDSalbego) reportedHow to scope MCP permissions per agent, not globally. The isolation pattern most AI agent builders skip. Most setups: one set of MCP credentials shared across every agent in the workspace. Your research agent, your writing agent, and your deploy agent all have the same access to Gmail, GitHub, Slack, and your filesystem. If any one agent is compromised, the attacker inherits everything. The fix: per-agent credential isolation. 🔵 Each agent gets only the MCP servers it actually needs 🔵 Each MCP server connection uses credentials scoped to that agent's role 🔵 Your research agent gets read-only access. Your deploy agent gets write access. Neither sees the other's credentials. How to implement: 🔵 Create separate credential files per agent role 🔵 Mount only the relevant credentials into each agent's environment 🔵 Use different API keys per MCP server per agent where the server supports it The pattern: principle of least privilege, applied to AI agent MCP connections. One compromised agent should never cascade to everything.
-
Aldo Lipani (@AldoLipani) reportedHow can GitHub be so bad? It’s down again. There you have another proof that we’re still far from having software solved.
-
Adam Healy (@Adam_T_H) reportedYour AI agent has your GitHub key in memory right now. That's most agent deployments today. If an agent holds a credential, it can leak it. Prompt injection, a log line, a compromised process. Doesn't matter how. Rotating it faster doesn't fix that. A short-lived token is still a token the agent controls. The real fix: agents should never hold credentials at all. That's Gatekeeper. The agent calls a tool. The credential lives in a hardware-attested enclave, not the agent's process. The agent gets the result back. Never the key. Simple test for any security control: can one bad decision bypass it? If yes, it's not a control. It's a suggestion. Where does your stack fail that test?
-
The Daily Agent (@TheDailyAgent) reported2 GitHub issues (#28058, #32753) ask OpenAI for a readable audit copy. Both still open. No response. Meanwhile Anthropic published how /goal works: a repo you can read, kill-switch file, steer file, verify gate. All visible. Opposite philosophies about who's in control.