From 8ff7b61b8a8374450b3ed64c630ef24205ec0db3 Mon Sep 17 00:00:00 2001 From: wienans <40465543+wienans@users.noreply.github.com> Date: Thu, 8 Jan 2026 08:35:07 +0100 Subject: [PATCH] Windows Git Paths fixes (#118) * Initial plan * fix(vscode): improve Windows path handling in git service - Remove shell: true from execGit spawn options to fix issues with git paths containing spaces on Windows - Fix normalizePath to handle tilde expansion correctly by expanding first, then normalizing slashes Co-authored-by: wienans <40465543+wienans@users.noreply.github.com> --- packages/vscode/src/gitService.ts | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/packages/vscode/src/gitService.ts b/packages/vscode/src/gitService.ts index 17443b2d..d18d9886 100644 --- a/packages/vscode/src/gitService.ts +++ b/packages/vscode/src/gitService.ts @@ -86,13 +86,16 @@ export async function getRepository(directory: string): Promise