From 65a230f0d74570d6fabd3ce4bb3aa1aff43cd1b0 Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Mon, 28 Jul 2025 20:44:35 +0200 Subject: [PATCH] Fix Claude Code settings syntax for git permissions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update the git permission pattern from "git *" to "git:*" to match the correct syntax format for Claude Code permissions. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .claude/settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude/settings.json b/.claude/settings.json index 1718019..26b18d3 100644 --- a/.claude/settings.json +++ b/.claude/settings.json @@ -1,7 +1,7 @@ { "permissions": { "allow": [ - "Bash(git *)" + "Bash(git:*)" ], "deny": [] }