From 9b6af32ae027be89e95f645baacaf8d7494ab8fc Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 31 Jul 2026 12:58:34 +0000 Subject: [PATCH 1/2] Initial plan From 97d6326b2d1ac1a76cd2982704d8dd57ccac0546 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 31 Jul 2026 13:00:43 +0000 Subject: [PATCH 2/2] remote.h: fix mixed tab/space indentation on continuation lines The get_remote_group() function declaration continuation lines used mixed tabs and spaces for indentation, causing the check-whitespace CI job to fail with "indent with spaces" errors. Replace the mixed indentation with tabs only. --- remote.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/remote.h b/remote.h index 6d9f24fe21ad6d..2fb56d81e5bcc6 100644 --- a/remote.h +++ b/remote.h @@ -358,8 +358,8 @@ struct remote_group_data { }; int get_remote_group(const char *key, const char *value, - const struct config_context *ctx, - void *priv); + const struct config_context *ctx, + void *priv); int add_remote_or_group(const char *name, struct string_list *list);