From e4b861d91237861d97235032f865e5b50c43bf0b Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Wed, 5 Apr 2023 12:15:42 -0400 Subject: [PATCH] Updates generate commit message messaging --- src/commands/generateCommitMessage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/generateCommitMessage.ts b/src/commands/generateCommitMessage.ts index 0d3d794..b645d47 100644 --- a/src/commands/generateCommitMessage.ts +++ b/src/commands/generateCommitMessage.ts @@ -247,7 +247,7 @@ export async function confirmSendToOpenAI(storage: Storage): Promise { const acceptAlways: MessageItem = { title: 'Always' }; const decline: MessageItem = { title: 'No', isCloseAffordance: true }; const result = await window.showInformationMessage( - 'To automatically generate commit messages, the diff of your staged changes is sent to OpenAI. This may contain sensitive information.\n\nDo you want to continue?', + 'This GitLens experimental feature automatically generates commit messages by sending the diff of your staged changes to OpenAI. This may contain sensitive information.\n\nDo you want to continue?', { modal: true }, accept, acceptWorkspace,