1. Home
  2. Companies
  3. GitHub
GitHub

GitHub status: access issues and outage reports

No problems detected

If you are having issues, please submit a report below.

Full Outage Map

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.

Problems in the last 24 hours

The graph below depicts the number of GitHub reports received over the last 24 hours by time of day. When the number of reports exceeds the baseline, represented by the red line, an outage is determined.

At the moment, we haven't detected any problems at GitHub. Are you experiencing issues or an outage? Leave a message in the comments section!

Most Reported Problems

The following are the most recent problems reported by GitHub users through our website.

  • 71% Website Down (71%)
  • 16% Sign in (16%)
  • 13% Errors (13%)

Live Outage Map

The most recent GitHub outage reports came from the following cities:

CityProblem TypeReport Time
Créteil Website Down 9 days ago
Trichūr Errors 12 days ago
Brasília Sign in 13 days ago
Lyon Website Down 13 days ago
Tel Aviv Website Down 16 days ago
Rive-de-Gier Website Down 16 days ago
Full Outage Map

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:

  • Gitbank_io
    Gitbank (@Gitbank_io) reported

    Community update — GitStock delay + what we have been building First, we owe you an honest update. We promised GitStock would ship earlier and we went quiet. That was on us. No excuses, we were heads down in the contracts and infrastructure and did not communicate well. That changes today. Here is what actually took time. We refused to ship GitStock on top of third-party APIs or borrowed infrastructure. Everything you see in Gitbank; the vault, the relayer, the swap engine, the RWA layer runs on smart contracts we wrote, audited ourselves, and deployed. The GitVault contract is verified on Basescan. The GitStockFactory is verified on Basescan. You can read every line. No black box. No external custody API holding your assets behind the scenes. That decision slowed us down. We think it was the right one. On security specifically. Your funds sit in a soul-bound smart contract vault anchored to your GitHub ID. Transfers are disabled at the contract level — not by a rule in a database, by the EVM itself. We also built private transaction routing directly inside GitVault on Base. No Tornado, no third-party mixer, no privacy-as-a-service API. The privacy logic lives in our own contract. You can verify it. The relayer signs and submits transactions on your behalf so you never pay gas, but the keys to your vault are yours. We hold nothing. If you want to verify any of this: check our contracts on Basescan, check our GitHub, check the bytecode. We are open source. The code is the proof. GitStock ships tomorrow.

  • namespacelabs
    Namespace (@namespacelabs) reported

    Behind every API, webhook, event pipeline, there are people trying to keep things running. And keeping these things running is not an easy task. At Namespace, we try to work with those people. Earlier this week, Gihub events were dropping fields we depend on and customer jobs were stalling. We reached out to work on the problem together and had a fix in under an hour. The @github team was ready to help. We just had to ask.

  • _xjdr
    xjdr (@_xjdr) reported

    @tolly_xyz @xlr8harder Sorry about that. I'll take a look. Looking with GitHub or Gmail should work but track this down and fix it asap

  • naimeh70
    naimeh (@naimeh70) reported

    @Amir1339216RKT This happens a lot during testnets. Now when I find a minor bug or contract issue, I just drop it publicly on GitHub or tag them directly instead of DMing.

  • 0xconglomerate
    Conglomerate (@0xconglomerate) reported

    Why exactly do VLAs fail? VLAs start w/ LLMs as their brain. Early roboticists (2021-2022) noticed that LLMs trained on internet text had absorbed a large amount of implicit knowledge about the physical world. So they took that best available pretrained brain, observed that actions could be formatted like language tokens, and assumed the transfer would work. But world knowledge encoded in language ≠ physics simulation. There's essentially a data structure mismatch: ▸ LLM pretraining data is discrete, symbolic, and sequential (text). ▸ Physical control is continuous, high-dimensional, and requires split-second feedback. --- ➦ VLAs in the real world, by the numbers: ① They barely work ▸ VLAs start at ~30% success on real robot tasks, it need hundreds of human interventions just to reach ~90% ▸ Best pretrained VLA hit 27.4% task progress on real robots ② VLAs can't generalize outside training ▸ On actions it's never seen, best VLAs score 25-32% task progress (fails when you change the environment) ③ Fine-tuning doesn't help ▸ The more robot-specific, the dumber it gets at everything else (only works on clean, controlled, success-only demos) ④ Too slow for a real robot ▸ OpenVLA runs at 3-5 Hz (physical control needs orders of magnitude faster than that) --- The easiest way to understand how VLAs are actually wrong is thru a real life example. ➦ Let's say you hired a chef who learned everything about cooking by reading, but has never stepped in a kitchen. If you ask them how to cook a steak, they'll tell you the best answer. But if you actually ask them to cook, they'll struggle when you hand them the pan. They'll have a hard time picking up the ingredients. They'll burn the steak. They know everything about cooking, but can't actually cook. --- ➦ Thoughts I want to take back a line I've said before: "Robots can see, but they still can't listen." (referencing to my Silencio piece before) I take it back. Robots can see, listen, even reason now. What they can't do is act in the real world. It's basically an AI chatbot wrapped in a robot body, not a robot that can actually do tasks. No wonder most demos online are scripted. There's a real problem with the brain, and roboticists have been building on the wrong foundation. VLAs are like a trojan horse, they look like the answer but bring a bunch of problems in with them. VLAs only learn through imitation which brings up the data problem. "Enough data" at scale doesn't mean hundreds of demos total. It means hundreds per task, per robot body, per environment. Hundreds again every time any one of those changes. So you've basically got a human-labor bottleneck. To get that data, someone has to physically collect it, either through: ▸ Teleoperation (slow, expensive, needs trained operators) ▸ Kinesthetic teaching (tedious, doesn't scale to complex tasks) ▸ Motion capture (high precision but high setup cost) ▸ Simulation (robots trained in sim often fail in the real world because physics engines aren't accurate enough) And you'd think, okay, maybe someday a company figures out a better way to collect all this. But the problem doesn't stop once you already have the data... Switch to a new robot body and you're collecting data from scratch, because VLAs don't transfer well across embodiments. Move it to a new environment and you're collecting again, since it just overfits to whatever setup it trained on. Give it a new task and yep, collect again, because it can't generalize to actions it hasn't seen. And if you fine-tune it for one thing, you'll probably break another, so now you're collecting data again just to fix what broke. So what was @DrJimFan and @nvidia's answer to this? World Action Models. Instead of building on a language model, you build on a world model: a model that's learned to simulate how the physical world actually behaves. VLA: a language model that learned to output actions WAM: a world simulator that learned to output actions So when you give a VLA a new task, it needs hundreds of demos to learn it. Give a WAM the same task and it simulates it forward first, acts based on that simulation, then adapts with barely any data. This is what NVIDIA did with the first WAM: DreamZero. DreamZero learns by watching the world (any video of anything, not just robot demos). The backbone is a video diffusion model, the same kind of model that generates realistic video. It was pretrained on massive amounts of internet video, so it already learned how the physical world works: how objects fall, how surfaces interact, how motion flows. Doesn't sound like an entirely different approach, right? But NVIDIA looked at it from a different angle. They figured motor actions are shaped a lot like pixels; both are high-dimensional continuous signals. So DreamZero processes them in the same model, at the same time. It predicts the next video frame and the next action together, through the same architecture. So when a robot runs DreamZero, it's literally dreaming a few seconds into the future in video, then reading its own dream to decide what to do next. If the dream looks coherent, the action works. If the dream hallucinates, the action fails. The DreamZero paper dropped last February 2026, and it's been open source on GitHub for anyone to try. Then in March 2026, at GTC, NVIDIA previewed GR00T N2, the direct successor to DreamZero. This is the production version of the WAM architecture, built for humanoid robots at scale And so far, everything's looking promising. GR00T N2 hits a 98% success rate on unseen domestic objects, a 40% jump over GR00T N1 (the VLA), and 2x better generalization than the leading VLAs. NVIDIA swapped robotics' data problem for a compute problem. Instead of collecting more human demos, just simulate more. So yeah, feels like we're finally pointed in the right direction, closer to robots that can actually function in the real world. Excited to see where DreamZero / GR00T N2 goes from here.

  • noxiepup
    𝑵𝒐𝒙𝒊𝒆 🥐 (@noxiepup) reported

    @softgaypaws @sillyandsunny no idea tbhhh, i found it like 2 years ago lurking thru github, so far it never gave me problems, at least none that i noticed

  • RahulVerma989
    Rahul Verma (@RahulVerma989) reported

    @ElitzaVasileva - I have created claude code routines to write blogs for three of my products daily which are driving the traffic from search engines. - You can create a similar workflow to manage your customer support. How 👇🏻 1) Create a feedback menu in the dashboard to create tickets within the platform. One for your users and one for yourself (admin). 2) Create the MCP server and connect it to claude or AI tool that you use. 3) Create a routine so that claude will trigger lets say every morning at 8 AM and go through each ticket and respond. You can also configure webhook to keep it near real time but it might exhaust the usage limit faster. Also include your website github repo in routine so that claude can refer to the codebase to provide accurate instructions. Just instruct claude to not make any edits to your website codebase and respond only when you are not replying for sufficient mount of time (like 3 hours for example) 4) If you are using resend then you can auto create the tickets in the dashboard of the user when the first email is received and after that the ticket will be updated automatically even if you do conversation on email. Like I don't even maintain one of my project LatestModelId as you can see in the screenshot. Claude run each week and update the codebase and I just review and approve the PR. Hope this helps 🙌🏼

  • almoggavra
    Almog Gavra (@almoggavra) reported

    A few other meaningless metrics to optimize for: - I've authored 22% of the RFCs - *** blame marks me responsible for 14% of the LOC (.rs files only) - I've opened 11% of the issues on GitHub - I've generated the most memes on our discord (allegedly)

  • Daniel_Farinax
    Dan (@Daniel_Farinax) reported

    Please note: This build took about 12 hours to compile on my Windows machine. I’ve included a handy installer to make setup easy. You may see an “unknown publisher” warning until the code signing certification is complete (currently in progress). Report any bugs or issues here or in Github.

  • 0xZoZoZo
    Zo (hiring) 🐦‍⬛ (@0xZoZoZo) reported

    I was telling a friend that @github needs to be replaced post agents and he asked me to explain why. I started stumbling, and doubting. Perhaps it's fine? Sitting down at my desk, let me try to explain why, and see if it make sense. Agents operate best when they have good context, which has made a lot of devs converge into large monorepos that combine all systems into a single location. This improves agents, but our GitHub actions become messy; like now we need to create these complex workflows to decide which action should run when, and GitHub's setup was not really meant for it. Another issue is the overall dev loop: an agent writes the code locally, you push out a branch, @cursor_ai reviews, then you copy paste the notes into the local agent, to fix and push up again. This is slow and cumbersome. You can hack your way by creating supervisor agents that orchestrates this dance, but it's annoying. Perhaps, there is some magical repository, that combines code, cloud agents, and deployment. You prompt, and this magical space will run through the entire process until you get some thumbs up back, and you're good to go. It can also combine all your backend data, product analytics, customer feedback, and perhaps start giving you product guidance, so you can just feed prepared prompts to this system. This seems magical.

  • NiteshTechAI
    Nitesh (@NiteshTechAI) reported

    This repo should not be free. private-gpt turns any local model server (Ollama, llama.cpp, vLLM) into a Claude-compatible API. Build private AI apps where zero data leaves your machine. ↳ 57,236 stars on GitHub ↳ RAG with citations and MCP connectors built in ↳ follows the Claude API spec: streaming, batch, tool use, extended thinking ↳ official integration guides for Claude Code, Claude Desktop, and Microsoft 365 But it is free. 100% open source, Apache 2.0. v1.0.0 shipped 9 days ago. The viral 2023 script quietly became production software. 🔗 GitHub link in the comments 👇

  • CliffDoesAI
    CliffDoesAI (@CliffDoesAI) reported

    A tool on GitHub just pulled 3,938 stars in a single day. It's called Headroom. It compresses your tool outputs, logs, and RAG chunks before they reach the LLM. Claim: 60-95% fewer tokens, same quality. I've been testing context compression on my own agent workflows because the problem is real. You run a few tool calls, pull in some docs, and suddenly you're burning tokens on stuff the model doesn't need. Last week I ran a 50-document extraction job. Raw context: ~12,000 tokens. After compressing tool outputs: ~800 tokens. Same results. One-eighth the cost. That's not a marginal improvement. That's the difference between a workflow that makes economic sense and one that bleeds money for no reason. Headroom works as a library, proxy, or MCP server. Single binary, zero dependencies. Open source. The token cost conversation usually focuses on which model you pick. But the real waste is in what you send it. Most agent pipelines push 3-5x more context than the task requires. I'm not saying compress everything blindly. Some tasks need full context. But for classification, extraction, summarization — the boring repetitive stuff — this is a free win. Have you measured how much of your agent's context window is actually useful vs. noise?

  • SolutionsCay
    Jose (@SolutionsCay) reported

    @petergyang /goal make me app does not work for me 😰 but /goal complete GitHub issues #90, #91, #92 works very well

  • Blum_OG
    Blum (@Blum_OG) reported

    Andrej Karpathy on MCP: "it's a protocol of speaking directly to agents as this new consumer and manipulator of digital information." that is the cleanest way to think about MCP your coding agent is becoming a second worker inside the product it needs the same context you use: repo, docs, browser, database, errors, designs, tickets, payments if you keep pasting those things into chat by hand you are doing integration work manually the best MCP stack for vibe coding: 1. Context7 give the agent current docs this saves you from stale Next.js patterns, old Supabase calls, wrong Stripe webhook shapes, and Vercel config from 2 versions ago 2. GitHub MCP give it the repo, issues, PRs, branches, workflow runs, and review context half of real work lives outside the file you currently have open 3. Playwright MCP give it a browser the agent should click the thing it built, fill the form, check the mobile view, and catch the button that compiles but does nothing 4. Firecrawl MCP give it clean web research use this before building around a third-party API, writing a comparison page, reading changelogs, or checking pricing claims 5. Supabase or Neon MCP give it the database context that matches your stack start read-only. add writes only when you trust the permissions 6. Sentry MCP give it production evidence real stack traces beat "it crashes sometimes" every single time 7. Figma MCP give it design context when the interface matters spacing, layout, copy, components, and screen structure should come from the file, not from a screenshot and hope 8. Linear MCP give it the task queue bugs, feature work, release notes, follow-ups, and PR links belong somewhere more durable than yesterday's chat 9. Stripe MCP give it official payment context checkout, subscriptions, webhooks, billing, and test mode deserve docs close by and human review close behind 10. Filesystem, ***, Memory, Sequential Thinking give it the base layer files, diffs, history, decisions, and longer plans make the agent act like it is working inside a real project recommended install order: 1. Context7, GitHub, Playwright 2. Supabase or Neon, Sentry, Firecrawl 3. Figma, Linear, Stripe when the product needs them 4. Filesystem, ***, Memory, Sequential Thinking as the base

  • Asteri_eth
    Asteri (@Asteri_eth) reported

    A $20 CLAUDE SUBSCRIPTION CAN TURN INTO A FULL AI TEAM IF YOU STOP USING IT LIKE CHATGPT Most people still use Claude like a smarter search bar Ask, copy, close, repeat tomorrow. Skills change that A skill is just a folder with a SKILL.md file, but inside it you can package an entire workflow once: PRDs, refactor plans, GitHub issues, code review, TDD, docs, marketing research, SEO, sales strategy and multi-agent orchestration That is not "better prompting" That is installing labor The article lists 50 Claude Skills with repos and install commands, from Anthropic’s official collection to Matt Pocock’s skill library and SkillsMP with 66k+ community skills The useful part is not the list It is the shift from asking Claude to remember your process to giving Claude the process already packaged You do not explain the same workflow 50 times You encode it once The model provides intelligence The skill turns it into labor Check full article below

  • polsia
    Polsia (@polsia) reported

    RepoRadar reviews every pull request while you sleep. Catches bugs, logic errors, style issues. Posts actionable comments. No more waiting on senior devs. Install on any GitHub repo in 2 clicks. Solo devs and teams alike.

  • cyber_razz
    Abdulkadir | Cybersecurity (@cyber_razz) reported

    AMD quietly removed RAM encryption from consumer Ryzen CPUs. Via a routine firmware update. No release notes. No advisory. No announcement. The BIOS setting still shows up. Still toggles on and off. Does absolutely nothing. A privacy-focused Linux hobbyist noticed in April. Spent months chasing it down. Filed a bug report on AMD’s GitHub. AMD engineers replied suggesting he toggle the setting off and back on. He showed them internal firmware dumps proving the flag was hardcoded to FALSE. An AMD senior principal engineer closed the thread with: “My apologies but I don’t have any more information to share on this topic.” That’s it. Seven weeks of investigation. Multiple motherboard vendors confirming it. Internal firmware evidence. AMD’s answer: no comment. The feature still works on Pro and EPYC chips. Which cost significantly more. The hardware is physically capable. The firmware just says no. Windows users have no way to detect this happened. There is no Windows tool that checks TSME status. The BIOS lies to you. AMD’s own engineers confirmed the feature worked on consumer chips in 2020. Then again in 2025. In 2026 it’s a PRO feature. Nobody told you.

  • programmers_app
    Programmers.App (@programmers_app) reported

    @Lovable @claudeai One very big fix is the Claude Github connection which fails many times, now #Lovable MCP solves that, great job! 🚀🚀🚀

  • boyuan_chen
    Boyuan (Nemo) Chen (@boyuan_chen) reported

    GitHub search is now an agent attack surface. A public malware-finder repo lists 9,330 suspicious GitHub repositories detected through push-pattern heuristics. Even if only a slice is ever encountered by real users, the agent failure mode is obvious. A coding agent asked to "find a library and make it work" can browse faster than it can judge provenance. Fresh commits, plausible README text, and repo-shaped packaging become inputs to an automated install path. The fix is boring and product-level: repo-age checks, provenance scoring, blocked arbitrary ZIP downloads, sandboxed installs, dependency allowlists, and logs that show exactly what code the agent trusted. For agent systems, retrieval belongs inside the security boundary.

  • wecraveai
    AI Crave (@wecraveai) reported

    Open source NotebookLM alternative with no data limits and AI agents. Same idea as Google's NotebookLM. Same chat-with-your-docs. Same podcast generator. Same cited answers. Except this one has no source limit, no notebook limit, no 200MB file cap, and no Google login. It's called SurfSense. Google NotebookLM vs SurfSense: - Sources per notebook: 50 to 600 → Unlimited - File size cap: 200MB and 500K words → No limit - LLM choice: Gemini only → 100+ models via LiteLLM - Local LLMs: Not allowed → Full Ollama and vLLM support - Self-host: No → Yes, one Docker command - Price: $0, $19.99/mo Pro, or $249.99/mo Ultra → $0 forever Here's the wildest part: It connects to 27+ sources Google can't touch. Notion. Slack. Linear. Jira. GitHub. Discord. Dropbox. OneDrive. Gmail. Confluence. Obsidian. ClickUp. Microsoft Teams. Airtable. Your entire work life, indexed once, searchable from one chat box. 14.4K GitHub stars. 1.4K forks. 6,232 commits. Apache-2.0 license. One honest note: the README says it's not yet production-ready and still being actively developed. But it already does more than NotebookLM does, and the gap is widening every release. This is what NotebookLM should have been from the start. Repo in the first comment.

  • meranaamkhann
    Asad (@meranaamkhann) reported

    Let's see what people are building these days!! Drop your project link or github Links down here

  • noor36758
    Kashaf (@noor36758) reported

    @PiyuCodes GitHub is literally a CS/engineering tool... if it gets banned that's your problem too 💀

  • GjermundGaraba
    Gjermund Garaba (@GjermundGaraba) reported

    @RhysSullivan I’ve deployed it locally and hooked up a bunch of stuff. Are GitHub issues the preferred feedback channel or do you have a better way?

  • ferologics
    fero (@ferologics) reported

    @ludwigABAP ai agents solve this. notion is no more. long live github issues.

  • sudeepsriv
    Sudeep Srivastava (@sudeepsriv) reported

    GitHub might finally have a serious competitor. And it’s from Cursor. Most people know Cursor as an AI code editor. But Cursor Origin is much bigger. It’s trying to become an AI-native alternative to GitHub where AI agents don’t just help write code. They help build entire products. Think: • Source control • AI coding agents • Code review • Project understanding • Team collaboration all inside one workflow. Why developers are paying attention: Instead of manually searching through repositories, you can tell AI: • Fix this bug • Build this feature • Refactor this project • Investigate an issue • Ship a working version And AI handles much of the execution. The bigger shift: GitHub was built for humans writing code. Cursor Origin is being built for humans managing AI agents that write code. That’s a completely different future. We’re moving from: Human → Code to Human → AI Agent → Code My take: If GitHub defined the software era, Cursor Origin could help define the AI-native development era. And that’s why Elon Musk acquiring Cursor would be huge. xAI would gain: • AI models • Compute infrastructure • Coding agents • A developer platform That’s not just buying a product. That’s owning a major piece of how future software gets built.

  • momo5502
    Maurice Heumann (@momo5502) reported

    @disarray00 If you have concrete recommendations, I would love to hear them, either as GitHub issue, maybe even a PR. But also as a comment here, I'd appreciate it. So when speaking about redundancy, what precisely?

  • rohit_jsfreaky
    Rohit Kashyap | AI + Full-Stack (@rohit_jsfreaky) reported

    @TheEthanDing distributed systems at github scale make five nines almost impossible. the skill issue crowd has never run anything millions of people hit in the same second

  • ebubekirttr
    bek※ (@ebubekirttr) reported

    @Themadhushaw01 @0interestrates Yeah, but the thing is, I am not working on github and I don’t want to use it so any other repository support would be better like gitlab

  • Artur_roses
    Arti | AI Builder (@Artur_roses) reported

    Claude Code can take a GitHub issue, write the code, run tests, and open a reviewed PR — no human keystrokes required. The dev loop isn't getting faster. It's being removed.

  • CristianTrifan
    Cristian Trifan (@CristianTrifan) reported

    This took 4 hours to complete and burnt almost all 5 hours tokens – I was left with 2%. I had almost 30 sub-agents created for independent code review and a lot of Claude sessions ran for adversarial code review. I still had to review every PR and added minimal guidance to Codex from time to time. Codex said my intervention was low to moderate, but high leverage. — Some insights from Codex: The run showed that this workflow can work, but only if the coordinator treats GitHub as the source of truth. The most useful pattern was: issue -> PR -> current head SHA -> checks -> reviewThreads -> merge/issue closure. When I followed that, things stayed grounded. When state moved underneath me, like #335 being force-updated externally or merged while Claude was running, the only safe response was to refresh GitHub state immediately. The “don’t rebase after merges” correction was probably the highest-value intervention. Without it, an agent will naturally try to keep branches clean, but with many open PRs that creates a CI storm. For this repo, “behind” should often be reported, not fixed. The other strong lesson is that reviewThreads matter more than flat PR comments.