Added a new step when git is not installed. Fixes #125349 (#131082)

This commit is contained in:
Vighnesh Kulkarni 2021-08-24 03:25:47 +05:30 committed by GitHub
parent c830429cb1
commit 9a3db30a7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -326,6 +326,15 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
type: 'svg', altText: 'Source Control view.', path: 'git.svg',
},
},
{
id: 'installGit',
title: localize('gettingStarted.installGit.title', "Install Git"),
description: localize('gettingStarted.installGit.description.interpolated', "Install Git to track changes in your projects.\n{0}", Button(localize('installGit', "Install Git"), 'https://aka.ms/vscode-install-git')),
when: 'git.missing',
media: {
type: 'svg', altText: 'Install Git.', path: 'git.svg',
},
},
{
id: 'tasks',
title: localize('gettingStarted.tasks.title', "Automate your project tasks"),