From 0f4655549796d570f1784d3c75eb69cdf3212a42 Mon Sep 17 00:00:00 2001 From: jzbakh Date: Wed, 11 Mar 2026 21:38:07 +0100 Subject: [PATCH] installer: annotate the 'None' credential helper option The 'None' credential helper option lacks context, which could lead some users to unintentionally disable this feature and have to authenticate repeatedly. This change adds a brief note clarifying that this option is intended strictly for headless environments, SSH-only workflows, or custom credential helpers. Signed-off-by: Jason Zbakh --- installer/install.iss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/install.iss b/installer/install.iss index 70787b7fe7..93159e4444 100644 --- a/installer/install.iss +++ b/installer/install.iss @@ -2432,7 +2432,7 @@ begin RdbGitCredentialManager[GCM]:=CreateRadioButton(GitCredentialManagerPage,'Git Credential Manager','Use the cross-platform Git Credential Manager.'+#13+'See more information about the future of Git Credential Manager here.',TabOrder,Top,Left); // No credential helper - RdbGitCredentialManager[GCM_None]:=CreateRadioButton(GitCredentialManagerPage,'None','Do not use a credential helper.',TabOrder,Top,Left); + RdbGitCredentialManager[GCM_None]:=CreateRadioButton(GitCredentialManagerPage,'None','Do not use a credential helper.'+#13+#13+'Note: Select only for headless environments, SSH-only workflows,'+#13+'or custom credential helpers. Otherwise, Git will prompt for'+#13+'credentials on every HTTPS operation.',TabOrder,Top,Left); // Restore the settings chosen during a previous install, if .NET Framework 4.7.2 // or later is available.