Update tutorial after user study

This commit is contained in:
Nick Trogh 2024-11-14 19:35:01 +01:00
Родитель 009a44b001
Коммит 8e9e895457
13 изменённых файлов: 146 добавлений и 136 удалений

Просмотреть файл

@ -11,71 +11,85 @@ MetaDescription: This tutorial gives you an overview of the key features of Visu
In this tutorial, you learn about the key features of Visual Studio Code to help you get started with coding quickly. You learn about the different components of the user interface and how to customize it to your liking. You then write some code and use the built-in code editing features, such as IntelliSense and Code Actions, and you learn about running and debugging your code. By installing a language extension, you add support for a different programming language.
<iframe src="https://www.youtube-nocookie.com/embed/B-s71n0dHUk?autoplay=true" width="640" height="320" allowFullScreen="true" frameBorder="0" title="Getting Started with Visual Studio Code"></iframe>
> [!TIP]
> If you prefer to follow along with a video, you can watch the [Getting Started video](https://www.youtube.com/watch?v=B-s71n0dHUk), which covers the same steps as this tutorial.
## Prerequisites
- [Download and install Visual Studio Code on your computer](https://code.visualstudio.com/download)
## Step 1: Open a folder in VS Code
## Open a folder in VS Code
In VS Code, you can work with individual files seamlessly, for example for quick edits or to view a file. Alternatively, by opening a folder, also known as a *workspace*, you unlock more features, such as folder-specific configuration settings, restoring the UI state for that folder, debug configurations, and more. Get more info about [workspaces](/docs/editor/workspaces.md).
You can use VS Code to work on individual files to make quick edits, or you can open a folder, also known as a *workspace*.
Let's start by creating a folder and opening it in VS Code. You'll use this folder throughout the tutorial.
1. Create a new folder `vscode101` on your computer.
1. Open Visual Studio Code.
When you first open VS Code, you should see the **Welcome** page with different actions to get started.
1. On the Welcome page, select **Open Folder...**, and then select the folder you created.
The VS Code window reloads and you should see the folder name at the top of the **Explorer** view. You'll use the Explorer view to view and manage the files and folders in your workspace.
1. Select **File** > **Open Folder...** from the menu to open a folder.
![Screenshot that shows VS Code after opening a folder, highlighting the Explorer view.](images/getting-started/open-folder.png)
Alternatively, you can select **Open Folder...** from the **File** menu or press `kb(workbench.action.files.openFolder)` to open a folder.
1. Select **New Folder**, create a new folder named `vscode101`, and then select **Select Folder** (**Open** on macOS).
> **Tip**: If you use the command line to work with VS Code, pass the folder name as a parameter to directly launch VS Code for that folder. For example, enter `code .` to open the current folder in VS Code.
The folder you create is the root of your workspace.
## Step 2: Explore the user interface
1. On the Workspace Trust dialog, select **Yes, I trust the authors** to enable all features in the workspace.
![Screenshot that shows the Workspace Trust dialog.](images/getting-started/workspace-trust.png)
Because you created the folder on your computer, you can trust the code in the folder.
> [!IMPORTANT]
> Workspace Trust lets you decide whether code in your project folder can be executed by VS Code. When you download code from the internet, you should first review it to make sure it's safe to run. Get more info about [Workspace Trust](/docs/editor/workspace-trust.md).
1. You should now see the **Explorer** view on the left, showing the name of the folder.
You'll use the Explorer view to view and manage the files and folders in your workspace.
> [!TIP]
> When you open a folder in VS Code, VS Code can restore the UI state for that folder, such as the open files, the active view, and the layout of the editor. You can also configure settings that only apply to that folder, or define debug configurations. Get more info about [workspaces](/docs/editor/workspaces.md).
## Explore the user interface
Now that you have a folder open in VS Code, let's take a quick tour of the user interface.
### Switch between views with the Activity Bar
The **Activity Bar** is located on the side of the window and gives you quick access to different views, such as the **Explorer**, **Search**, **Source Control**, and **Run and Debug** views.
1. Use the Activity Bar to explore the different views.
As you hover over the Activity Bar, you can see the name of each view and the keyboard shortcut to open each view. You'll find that many of the features in VS Code have keyboard shortcuts already assigned to them, and you can also customize these shortcuts to your liking.
1. Use the Activity Bar to switch between different views.
![Screenshot that highlights the Activity Bar.](images/getting-started/activity-bar.png)
1. Notice the **Primary Side Bar** that opens when you select a view in the Activity Bar.
> [!TIP]
> Hover over the Activity Bar to see the name of each view and the corresponding keyboard shortcut. You can toggle a view open and closed by selecting the view again or pressing the keyboard shortcut.
The Primary Side Bar shows view-specific information. For example, the Source Control view shows the changes in your Git repository, and the Run and Debug view enables you to configure and start debugging sessions.
1. When you select a view in the Activity Bar, the **Primary Side Bar** opens to show view-specific information.
For example, the Run and Debug view enables you to configure and start debugging sessions.
![Screenshot that shows the Activity Bar and the Run and Debug view in the Primary Side Bar.](images/getting-started/activity-bar-and-side-bar.png)
> **Tip**: Select the current view in the Activity Bar again to toggle the Primary Side Bar open and closed.
### View and edit files with the Editor
The **Editor** is located in the main area of the window and is where you view and edit files in your workspace.
1. Select the Explorer view in the Activity Bar, and then select the **New File...** button to create a new file in your workspace.
1. Select the Explorer view in the Activity Bar, and select the **New File...** button to create a new file in your workspace.
![Screenshot that shows the New File button in the Explorer view.](images/getting-started/explorer-new-file.png)
1. Enter the name `index.html` and press `kbstyle(Enter)`.
A file is added to your workspace and an Editor opens in the main area of the window, where you can start typing and editing the file.
A file is added to your workspace and an Editor opens in the main area of the window.
![Screenshot that shows the Editor in the main area of the window.](images/getting-started/new-file-editor.png)
1. Add more files to your workspace and notice that each file opens in a new Editor tab.
1. Start typing some HTML code in the `index.html` file.
As you type, you should see suggestions popping up that help you complete your code (*IntelliSense*). You can use the `kbstyle(Up)` and `kbstyle(Down)` keys to navigate the suggestions, and `kbstyle(Tab)` to insert the selected suggestion.
![Screen capture that shows IntelliSense in action for an HTML file.](images/getting-started/html-intellisense.gif)
1. Add more files to your workspace and notice that each file opens a new Editor tab.
You can open as many editors as you like and view them side by side vertically or horizontally. Learn more about [side by side editing](/docs/getstarted/userinterface.md#side-by-side-editing).
@ -83,99 +97,83 @@ The **Editor** is located in the main area of the window and is where you view a
### Access the terminal from the Panel area
The **Panel** area is located below the Editor and contains different views, such as the output and debug information, and also gives you access to the integrated terminal.
1. Open the Panel area by selecting **View** > **Appearance** > **Panel** from the menu (or press `kb(workbench.action.togglePanel)`).
Notice the different view in the Panel area. As you use different features in VS Code, such as debugging your code, you'll use the information and functionality in these views.
![Screenshot that shows the Panel area with the Terminal view.](images/getting-started/vscode-panel.png)
> **Tip**: You can move the Panel area with the **View** > **Appearance** > **Panel Position** menu, for example to the left or right for more vertical space.
1. Open the integrated terminal by selecting **Terminal** in the Panel area > **New Terminal**, and try running some shell commands.
The terminal enables you to run shell commands directly in VS Code, without switching to another terminal application. For example, you can use the terminal to install dependencies for your project, or run a development server. Notice that the terminal working directory is the root of your workspace.
![Screenshot that shows the integrated terminal in the Panel area.](images/getting-started/vscode-terminal.png)
1. VS Code has an integrated terminal. Open it by pressing `kb(workbench.action.terminal.toggleTerminal)`.
You can choose between different shells, such as PowerShell, Command Prompt, or Bash, depending on your operating system configuration.
![Screenshot that shows the Panel area with the Terminal view.](images/getting-started/vscode-panel.png)
1. In the terminal, enter the following command to create a new file in your workspace.
```bash
echo "Hello, VS Code" > greetings.txt
```
The default working folder is the root of your workspace. Notice that the Explorer view automatically picks up and shows the new file.
![Screenshot that shows the Explorer view with the new file.](images/getting-started/terminal-new-file.png)
1. You can open multiple terminals simultaneously. Select the **Launch Profile** dropdown to view the available shells and choose one.
![Screenshot that shows the Launch Profile dropdown with the available shells.](images/getting-started/terminal-launch-profile.png)
### Access commands with the Command Palette
Many of the commands in VS Code are available through the Command Palette. For example, enter *Create new file* in the Command Palette to create a file in your workspace, or enter *Git* to view the list of Git actions you can trigger.
1. Open the **Command Palette** by pressing `kb(workbench.action.showCommands)`. You can also use the **View** > **Command Palette...** menu item.
1. Select **View** > **Command Palette** or press `kb(workbench.action.showCommands)` to open the **Command Palette**.
Many of the commands in VS Code are available through the Command Palette. When you install extensions, they can also add commands to the Command Palette.
![Screenshot that shows the Command Palette, listing the entries for 'Create new file'.](images/getting-started/command-palette.png)
![Screenshot that shows the Command Palette.](images/getting-started/command-palette.png)
> **Tip**: Notice that the Command Palette shows the default keyboard shortcut for commands that have one. You can use the keyboard shortcut to run the command directly.
> [!TIP]
> Notice that the Command Palette shows the default keyboard shortcut for commands that have one. You can use the keyboard shortcut to run the command directly.
1. Press `kb(workbench.action.quickOpen)` to use the Command Palette to navigate to a file in your workspace. Start typing to filter the list.
1. The Command Palette supports different modes of operation:
The **Quick Open** feature enables you to quickly open a file in your workspace, or search for symbols in files. Get more info about the [Command Palette](/docs/getstarted/userinterface.md#command-palette) in the VS Code documentation.
1. After the `>` symbol, start typing to filter the command list. For example, type `move terminal` to find commands to move the terminal to a new window.
![Screenshot that shows the Quick Open feature in the Command Palette.](images/getting-started/quick-open.png)
![Screenshot that shows the Command Palette, listing the entries for moving the terminal.](images/getting-started/command-palette-move-terminal.png)
### View status information with the Status Bar
1. Remove `>` character and start typing to search for files in your workspace. You can use the `kb(workbench.action.quickOpen)` keyboard shortcut to open the Command Palette and start searching for files directly.
The **Status Bar** is located at the bottom of the window and shows information about the file you are editing, and the workspace you have open. For example, if the folder you opened is a Git repository, the Status Bar shows the Git status and current branch.
![Screenshot that shows the Quick Open feature in the Command Palette.](images/getting-started/quick-open.png)
1. Open a file by selecting it in the Explorer view.
> [!TIP]
> VS Code uses fuzzy matching to find files or commands. For example, typing `odks` returns the `Open Default Keyboard Shortcuts` command.
The Status Bar shows the language mode, indentation, and the line ending of the current editor.
## Configure VS Code settings
![Screenshot that shows the Status Bar at the bottom of the window.](images/getting-started/status-bar.png)
You can customize almost every part of VS Code by configuring settings. You can use the **Settings Editor** to modify the settings in VS Code or directly modify the `settings.json` file.
1. Select the indentation field (shown as `Spaces: 4` in the screenshot) in the Status Bar to modify the indentation of the current file. For example, to use tabs instead of spaces.
If you've opened a Git repository, you can select the branch name in the Status Bar to create a new branch.
## Step 3: Customize the user interface
Each developer has their own preferences for how their coding environment should look. VS Code enables you to change the layout, colors, keyboard shortcuts, and nearly every other aspect of the editor through various settings.
Let's start by using **Color Themes** to customize the colors in VS Code. A Color Theme affects both the VS Code user interface elements and the editor highlighting colors.
To select a different Color Theme:
1. Select the **Manage** button (gear icon) in the Activity Bar, and then select **Themes** > **Color Theme** to display the Color Theme picker.
![Screenshot that shows the Manage menu to change the color theme, highlighting the Manage button in the Activity Bar.](images/getting-started/change-color-theme.png)
Alternatively, you can enter **Color Theme** in the Command Palette or press `kb(workbench.action.selectTheme)`.
1. Use the `kbstyle(Up)` and `kbstyle(Down)` keys to navigate through the list and preview the colors of the theme.
VS Code comes with a list of built-in themes that you can choose from. As you move through the list, the active theme is previewed in VS Code.
![Screen capture that shows how to switch between different color themes by using the Command Palette.](images/themes/themes_hero.gif)
> **Tip**: You can also select Color Themes from the VS Code Marketplace directly by selecting **Browse Additional Color Themes...** from the Color Theme picker.
Beyond changing the color theme of the user interface, you can customize almost every part of VS Code by using settings. Maybe you prefer a different font for the editor, change word wrapping, or enable [floating editor windows](/docs/editor/custom-layout.md#floating-editor-windows).
Let's use the **Settings Editor** to modify the font size in the editor:
1. Select **File** > **Preferences** > **Settings** (or press `kb(workbench.action.openSettings)`) to open the Settings Editor.
1. Press `kb(workbench.action.openSettings)` to open the Settings Editor (or select the **File** > **Preferences** > **Settings** menu item).
![Screenshot that shows the Settings Editor.](images/getting-started/settings-editor.png)
1. Modify the value of the **Editor: Font Size** setting to *36*.
> [!TIP]
> Use the search box to filter the list of settings that are shown.
When you switch to the `index.html` editor tab, notice how the font size change is immediately applied in the editor. You can select the gear icon next to the setting and select **Reset Setting** to reset the value back to its default value.
1. By default, VS Code doesn't automatically save modified files. Select a value from the Auto Save dropdown to change this behavior.
By default, when you change a setting, it applies to all your VS Code workspaces (**User Settings**). Switch to the **Workspace** tab to change a setting that only applies to the current workspace.
![Screenshot that shows the Auto Save dropdown in the Settings Editor.](images/getting-started/settings-editor-auto-save.png)
> **Tip**: Use the search box in the Settings Editor to quickly find a setting.
VS Code automatically applies changes to settings. When you modify a file in your workspace, it should now be automatically saved.
There are many more ways to customize your VS Code experience, such as [changing default keyboard shortcuts](/docs/getstarted/keybindings.md), adding [code snippets](/docs/editor/userdefinedsnippets.md), or by adding extensions from the [Visual Studio Marketplace](#step-5-install-a-language-extension).
1. To revert a setting to its default value, select the gear icon next to the setting and select **Reset Setting**.
## Step 4: Write some code
![Screenshot that shows the gear icon next to a setting in the Settings Editor.](images/getting-started/settings-editor-reset-setting.png)
VS Code is first and foremost a code editor, so let's start by writing some code! VS Code has built-in support for JavaScript, TypeScript, HTML, CSS, and more. In this tutorial, you create a sample JavaScript file and use some of the code editing features that VS Code offers.
> [!TIP]
> You can quickly find all modified settings by typing `@modified` in the search box or selecting the **Modified** filter.
VS Code supports many programming languages and in a next step, you'll install a language extension to add support for a different language, namely Python.
1. You can use the tabs in the Settings Editor to switch between **User** settings and **Workspace** settings.
User settings apply across all your workspaces. Workspace settings only apply to the current workspace. Workspace settings override user settings. Get more information about [settings in VS Code](/docs/getstarted/settings.md).
## Write some code
VS Code has built-in support for JavaScript, TypeScript, HTML, CSS, and more. In this tutorial, you create a sample JavaScript file and use some of the code editing features that VS Code offers.
VS Code supports many programming languages and in a next step, you'll [install a language extension](#step-6-install-a-language-extension) to add support for a different language, namely Python.
1. In the Explorer view, create a new file `app.js`, and start typing the following JavaScript code:
@ -193,55 +191,55 @@ VS Code supports many programming languages and in a next step, you'll install a
![Screen capture that shows IntelliSense in action for a JavaScript file.](images/getting-started/javascript-intellisense.gif)
1. Put the cursor on the `Hello,` string, select the lightbulb icon, and then select **Convert to template string**.
1. When you put the cursor on the string `Hello,`, you should see a lightbulb icon appear to indicate there's a Code Action.
The lightbulb indicates that there are **Code Actions** available, which are suggestions that help you apply quick fixes to your code. You can also use the `kb(editor.action.triggerSuggest)` keyboard shortcut to open the lightbulb menu.
You can also use the `kb(editor.action.triggerSuggest)` keyboard shortcut to open the lightbulb menu.
In this case, the Code Action converts `""Hello, " + name` into a [template string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals) `` `Hello, ${name}` ``, which is a special JavaScript construct to embed expressions in strings.
1. Select the lightbulb icon, and then select **Convert to template string**.
![Screenshot that shows the lightbulb Code Action to convert a string concatenation to a template string.](images/getting-started/code-action-template-string.png)
You can further experiment with IntelliSense in the different files in your workspace. For example, in the `index.html` file, start typing `<` to see suggestions for HTML tags.
Code Actions are suggestions to apply quick fixes to your code. In this case, the Code Action converts `""Hello, " + name` into a [template string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals) `` `Hello, ${name}` ``, which is a special JavaScript construct to embed expressions in strings.
> **Tip**: Toggle the **File** > **Auto Save** menu item to automatically save files whenever you make changes.
Learn more about code [editing features](/docs/editor/codebasics.md), [IntelliSense](/docs/editor/intellisense.md), [code navigation](/docs/editor/editingevolved.md), and [refactoring](/docs/editor/refactoring.md) in VS Code.
## Step 5: Use source control
## Use source control
As you're writing code, you'll want to save your work in a source control system to track changes or collaborate with others. Visual Studio Code has integrated source control management (SCM) and includes [Git](https://git-scm.com/) support out-of-the-box.
Visual Studio Code has integrated source control management (SCM) and includes [Git](https://git-scm.com/) support out-of-the-box.
Let's use the built-in Git support to commit the changes you've made previously.
1. Make sure you have [Git](https://git-scm.com/) installed on your computer. You can check if Git is installed by opening the terminal and entering `git --version`.
1. Select the **Source Control** view in the Activity Bar to open the Source Control view.
1. Select the **Source Control** view in the Activity Bar, and select **Initialize Repository** to create a new Git repository for your workspace.
![Screenshot that shows the Source Control view, highlighting the button in the Activity Bar.](images/getting-started/source-control-view.png)
You also have the option to directly publish your changes to a [GitHub repository](https://github.com) by selecting **Publish to GitHub**.
1. Make sure you have [Git](https://git-scm.com/) installed on your computer. If you don't have Git installed, you'll see a button in the Source Control view to install it on your machine.
1. Select **Initialize Repository** to create a new Git repository for your workspace.
![Screenshot that shows the Source Control view, highlighting the Initialize Repository button.](images/getting-started/source-control-initialize.png)
1. After you initialize a repository, the Source Control view shows the changes you've made in your workspace.
After you initialize a repository, the Source Control view shows the changes you've made in your workspace.
Notice the letter indicating the type of change alongside each file. For example, `U` indicates an untracked/new file.
When you hover over a change, you can choose to discard or stage the change. Staging a change means that you've marked it as ready to be committed.
1. You can stage individual changes by hovering over a file and selecting `+` next to a file.
![Screenshot that shows the Source Control view with changes in the workspace.](images/getting-started/source-control-changes.png)
1. Select **+** next to **Changes** to stage all changes at once.
> [!TIP]
> To stage all changes, hover over **Changes** and select the **Stage All Changes** button.
1. Enter a commit message, for example `Add hello function`, and then select the **Commit** to commit the changes to your Git repository.
![Screenshot that shows the Source Control view with a commit message.](images/getting-started/source-control-commit.png)
1. The **Source Control Graph** shows a visual representation of the commit history of your Git repository. You can use the graph to explore the commit history, compare changes, and more.
![Screenshot that shows the Source Control Graph in the Source Control view.](images/getting-started/source-control-graph.png)
> [!TIP]
> You can use the **Source Control Graph** to show a visual representation of the commit history of your Git repository.
There's a lot more to discover about source control in VS Code. Get more info about [source control in VS Code](/docs/sourcecontrol/overview.md).
## Step 6: Install a language extension
## Install a language extension
The features that VS Code includes out-of-the-box are just the start. VS Code has a rich ecosystem of extensions that let you add languages, debuggers, and tools to your installation to support your specific development workflow. There are thousands of extensions available in the [Visual Studio Marketplace](https://marketplace.visualstudio.com/vscode).
VS Code has a rich ecosystem of extensions that let you add languages, debuggers, and tools to your installation to support your specific development workflow. There are thousands of extensions available in the [Visual Studio Marketplace](https://marketplace.visualstudio.com/vscode).
Let's install a language extension to add support for Python, or any other programming language you are interested in.
@ -268,17 +266,15 @@ Let's install a language extension to add support for Python, or any other progr
![Screen capture that shows IntelliSense in action for a Python file.](images/getting-started/python-intellisense.gif)
Learn more about code [editing features](/docs/editor/codebasics.md), [IntelliSense](/docs/editor/intellisense.md), [code navigation](/docs/editor/editingevolved.md), and [refactoring](/docs/editor/refactoring.md) in VS Code.
## Run and debug your code
## Step 7: Run and debug your code
One of the key features in VS Code is its great support for running and debugging code. VS Code has built-in support for running and debugging Node.js applications. In this tutorial, you use the Python extension you installed in the previous step to debug a Python program.
VS Code has built-in support for running and debugging Node.js applications. In this tutorial, you use the Python extension you installed in the previous step to debug a Python program.
Let's debug the `hello.py` program that you created in the previous step.
1. Make sure that [Python 3](https://www.python.org/downloads/) is installed on your computer.
To run and debug programs in VS Code, you need to have the necessary runtime installed on your computer. For example, to run and debug a Node.js program, you need to have the Node.js runtime installed.
If there's no Python interpreter installed on your computer, you'll see a notification in the lower right corner of the window. Select **Select Interpreter** to open the **Command Palette** and select the Python interpreter you want to use or install one.
1. In the `hello.py` file, place the cursor on the `print` line and press `kbstyle(F9)` to set a breakpoint.
@ -286,23 +282,22 @@ Let's debug the `hello.py` program that you created in the previous step.
![Screenshot that shows a breakpoint in the editor.](images/getting-started/python-set-breakpoint.png)
1. Press `kbstyle(F5)` to start a debugging session. Select **Python Debugger** in the Quick Pick menu, and then select **Python File** to debug the current Python file.
1. Press `kbstyle(F5)` to start a debugging session.
Select the Python debugger:
1. Select the Python debugger:
![Screenshot that shows the Quick Pick menu to select the Python debug configuration.](images/getting-started/python-select-debugger.png)
![Screenshot that shows the Quick Pick menu to select the Python debug configuration.](images/getting-started/python-select-debugger.png)
Choose to run the current Python file:
1. Choose to run the current Python file:
![Screenshot that shows the Quick Pick menu to select the Python debug configuration.](images/getting-started/python-debug-configuration.png)
![Screenshot that shows the Quick Pick menu to select the Python debug configuration.](images/getting-started/python-debug-configuration.png)
1. Notice that the program starts and that the execution stops at the breakpoint you set.
VS Code uses the Python Debugger you installed via the extension to run and debug the program.
![Screenshot that shows the program stopped at a breakpoint in the editor, highlighting the Variables view to inspect variables.](images/getting-started/vscode-debugging.png)
> **Tip**: Inspect the value of the `name` variable by hovering over it in the editor while the execution is paused. You can view the value of variables at any time in the **Variables** view in the **Run and Debug** view.
> [!TIP]
> Inspect the value of the `name` variable by hovering over it in the editor while the execution is paused. You can view the value of variables at any time in the **Variables** view in the **Run and Debug** view.
1. Press the **Continue** button in the Debug toolbar or press `kbstyle(F5)` to continue the execution.

Просмотреть файл

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d55e53bd892061df24eaeb82610ce956b54c735e40626d146aed0016858be4b6
size 61211

Просмотреть файл

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b4c32f13c41bec78dabbe8632c9089fcebac7ce22ef0ce59f488ed56bfed96cb
size 73811
oid sha256:1eb03a947ba963c42b26a3448c251707d7351369a740ecc70d473be252ff3b5b
size 53120

Просмотреть файл

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9b95da45fbf14b5097243d9ed0c6911e6de06707410518459d92c6e579faf012
size 97475

Просмотреть файл

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fd4ff371bece29d9a8e2a644fd44e190e4b062b1adb667becc886baf8df91c9c
size 41671

Просмотреть файл

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:549e44b58c0713704a249c4c9e4ed9817ac33941bea168964cea835d801b51e3
size 117921
oid sha256:2f6aad378b2a13c087e7615a1d980f50c53a1fd5a1068ae69a89b484af9cedf8
size 132290

Просмотреть файл

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f30f683e169b92a52fe36eea6dde400b2eb0a427436c3f71f647652f227a2bad
size 86335

Просмотреть файл

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d0a7517f33b02aca44bd37b4a30600200f4abf8ac5f1f812bed7a61688d33a91
size 128174

Просмотреть файл

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:be463bef38af9d07c2d7f46b033a4ecdcb040d7932e5293b2f60523ce7ad6203
size 58139

Просмотреть файл

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ebabfbc196d19808c89268496d2382d2eca67b0a0246dc218f5b0172e1a730ac
size 107748

Просмотреть файл

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:71f109a20bd6ec4ccdf1bd9b2ebd6e05c7b8d73309d5571e2e693f5a4e78f274
size 26981
oid sha256:92b45fc95a0a3e1058f072be0815d4904e9a10eb964d779e3b5d2a1eceb24cc6
size 43379

Просмотреть файл

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d7f94926d2880c52515290b04ea98d2649f5d1c446284daadcd52fad1f849019
size 67048

Просмотреть файл

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0a640cc2829f80939a994db3847e772cea0066cbcf2413375accf7410ec1d4fd
size 145500