Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v2.1.236 Home All releases olderv2.1.235 v2.1.237newer
Claude Code v2.1.236

Git commands run for cloud seeding can no longer reach the network or prompt

You'll notice
Useful3 Signal2
Cloud Sessions not in their notes

Git calls made while packaging your repo for the cloud cannot fetch or ask for passwords.

GIT_ALLOW_PROTOCOL
What

Git invocations on the path that packages your repository for a cloud session now run with no network protocols allowed (GIT_ALLOW_PROTOCOL set to "none"), lazy fetching off, terminal credential prompts off, and bare repositories only when explicitly named. A hang waiting for a password or a surprise fetch is no longer possible there.

Details
  • The base argument list adds safe.bareRepository=explicit.
  • git status --porcelain now always states an untracked-file mode, passing --untracked-files=normal when it is not asking for all of them, rather than relying on whatever the repository configures.
  • A new failure message covers the case where untracked files exceed the size budget for seeding.
Evidence

GIT_ALLOW_PROTOCOL: "none",

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

Related

Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.

See this entry in the whole of v2.1.236 →