Skip to content

Commit

Permalink
fix #227150, doing a recurse git clone instead of regular clone to cl…
Browse files Browse the repository at this point in the history
…one the submodules as well
  • Loading branch information
Parasaran-Python committed Nov 26, 2024
1 parent 4f217d9 commit 4fe9c62
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion extensions/git/package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@
]
},
"view.workbench.scm.empty": {
"message": "In order to use Git features, you can open a folder containing a Git repository or clone from a URL.\n[Open Folder](command:vscode.openFolder)\n[Clone Repository](command:git.clone)\nTo learn more about how to use Git and source control in VS Code [read our docs](https://aka.ms/vscode-scm).",
"message": "In order to use Git features, you can open a folder containing a Git repository or clone from a URL.\n[Open Folder](command:vscode.openFolder)\n[Clone Repository](command:git.cloneRecursive)\nTo learn more about how to use Git and source control in VS Code [read our docs](https://aka.ms/vscode-scm).",
"comment": [
"{Locked='](command:vscode.openFolder'}",
"Do not translate the 'command:*' part inside of the '(..)'. It is an internal command syntax for VS Code",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export const startEntries: GettingStartedStartEntryContent = [
icon: Codicon.sourceControl,
content: {
type: 'startEntry',
command: 'command:git.clone',
command: 'command:git.cloneRecursive',
}
},
{
Expand Down Expand Up @@ -536,7 +536,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
{
id: 'scmClone',
title: localize('gettingStarted.scm.title', "Track your code with Git"),
description: localize('gettingStarted.scmClone.description.interpolated', "Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}", Button(localize('cloneRepo', "Clone Repository"), 'command:git.clone')),
description: localize('gettingStarted.scmClone.description.interpolated', "Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}", Button(localize('cloneRepo', "Clone Repository"), 'command:git.cloneRecursive')),
when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
media: {
type: 'svg', altText: 'Source Control view.', path: 'git.svg',
Expand Down

0 comments on commit 4fe9c62

Please sign in to comment.