From a7629d51bc81255f861e13842c9e6ab0a46c3e4c Mon Sep 17 00:00:00 2001 From: Conor <1810150+cst8t@users.noreply.github.com> Date: Thu, 28 May 2026 16:37:50 +0100 Subject: [PATCH] test: disable autocrlf in git repo helper --- src-tauri/tests/git.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src-tauri/tests/git.rs b/src-tauri/tests/git.rs index 9e70e61..27caf13 100644 --- a/src-tauri/tests/git.rs +++ b/src-tauri/tests/git.rs @@ -21,6 +21,7 @@ fn init_repo() -> TempDir { git(path, &["config", "user.email", "test@gitmun.test"]); git(path, &["config", "user.name", "Gitmun Test"]); git(path, &["config", "commit.gpgsign", "false"]); + git(path, &["config", "core.autocrlf", "false"]); // Initial empty commit so HEAD exists git(path, &["commit", "--allow-empty", "-m", "init"]); dir