Commit 382dd76d authored by Tomas Vik (OOO back on 2026-08-31)'s avatar Tomas Vik (OOO back on 2026-08-31) 🌴
Browse files

fix: mention GitLab: Remove Account command in docs and error messages

parent 492a15a2
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -76,6 +76,7 @@ You can use [Command Palette](https://code.visualstudio.com/docs/getstarted/user
- `GitLab: Create new issue on current project`
- `GitLab: Create new merge request on current project` - Open the merge request page to create a merge request.
- `GitLab: Open Remote Repository` - Browse a remote GitLab repository. [Read more](#browse-a-repository-without-cloning).
- `GitLab: Remove Account from VS Code`

Commands this extension extends or integrates with:

+1 −1
Original line number Diff line number Diff line
@@ -131,7 +131,7 @@ export class AccountService {

    if (accountMap[account.id]) {
      throw new Error(
        `Account for instance ${account.instanceUrl} and user ${account.username} already exists. The extension ignored the request to re-add it. You can remove the account and add it again.`,
        `Account for instance ${account.instanceUrl} and user ${account.username} already exists. The extension ignored the request to re-add it. You can remove the account with the "GitLab: Remove Account from VS Code" command and add it again.`,
      );
    }
    const { secret, accountWithoutSecret } = splitAccount(account);