Skip to content

Commit 55d6b17

Browse files
authored
Git - Update unsafe repositories link (microsoft#167832)
Update unsafe repositories link
1 parent cb1f271 commit 55d6b17

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

extensions/git/package.nls.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -330,15 +330,15 @@
330330
"message": "Scanning workspace for git repositories..."
331331
},
332332
"view.workbench.scm.unsafeRepository": {
333-
"message": "The detected git repository is potentially unsafe as the folder is owned by someone other than the current user.\n[Manage Unsafe Repositories](command:git.manageUnsafeRepositories)\nTo learn more about unsafe repositories [read our docs](https://aka.ms/vscode-scm).",
333+
"message": "The detected git repository is potentially unsafe as the folder is owned by someone other than the current user.\n[Manage Unsafe Repositories](command:git.manageUnsafeRepositories)\nTo learn more about unsafe repositories [read our docs](https://aka.ms/vscode-git-unsafe-repository).",
334334
"comment": [
335335
"{Locked='](command:git.manageUnsafeRepositories'}",
336336
"Do not translate the 'command:*' part inside of the '(..)'. It is an internal command syntax for VS Code",
337337
"Please make sure there is no space between the right bracket and left parenthesis: ]( this is an internal syntax for links"
338338
]
339339
},
340340
"view.workbench.scm.unsafeRepositories": {
341-
"message": "The detected git repositories are potentially unsafe as the folders are owned by someone other than the current user.\n[Manage Unsafe Repositories](command:git.manageUnsafeRepositories)\nTo learn more about unsafe repositories [read our docs](https://aka.ms/vscode-scm).",
341+
"message": "The detected git repositories are potentially unsafe as the folders are owned by someone other than the current user.\n[Manage Unsafe Repositories](command:git.manageUnsafeRepositories)\nTo learn more about unsafe repositories [read our docs](https://aka.ms/vscode-git-unsafe-repository).",
342342
"comment": [
343343
"{Locked='](command:git.manageUnsafeRepositories'}",
344344
"Do not translate the 'command:*' part inside of the '(..)'. It is an internal command syntax for VS Code",

extensions/git/src/model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -740,7 +740,7 @@ export class Model implements IRemoteSourcePublisherRegistry, IPostCommitCommand
740740
commands.executeCommand('git.manageUnsafeRepositories');
741741
} else if (choice === learnMore) {
742742
// Learn More
743-
commands.executeCommand('vscode.open', Uri.parse('https://aka.ms/vscode-scm'));
743+
commands.executeCommand('vscode.open', Uri.parse('https://aka.ms/vscode-git-unsafe-repository'));
744744
}
745745
}
746746

0 commit comments

Comments
 (0)