Public documentation for Visual Studio Code
Перейти к файлу
microsoft-github-policy-service[bot] 28c0ef4ed2
Microsoft mandatory file
2022-05-18 22:06:48 +00:00
.config fix area paths 2022-01-18 11:58:31 -08:00
.devcontainer
.husky adding basic git lfs message hooks to husky 2022-02-08 17:47:21 -08:00
.pipelines bump node version for pipelines 2022-03-24 16:07:09 -07:00
.vscode Revert Prettier formatting, add .prettierignore 2022-02-27 16:33:10 -08:00
api revert and tune a few header links 2022-05-16 12:22:19 -07:00
blogs Also mention C++ toolset dependency 2022-05-18 10:16:44 -07:00
build Small change to test live stream 2022-05-17 16:16:04 -07:00
docs remove mention of 'code' as alt to 'module' 2022-05-17 14:09:07 -07:00
images Delete temporary image 2022-01-25 21:58:04 -08:00
learn .NET Core is now just .NET 2022-05-06 13:24:15 -07:00
release-notes Mention 1.67.2 release 2022-05-18 09:45:09 -07:00
remote/advancedcontainers Fix typo 2022-05-06 13:48:51 +02:00
remote-release-notes Update version 2022-05-05 16:12:08 +02:00
wiki/images
.editorconfig
.gitattributes .gitattributes: mark '*.md' as Markdown files 2022-03-30 15:41:47 -04:00
.gitignore
.prettierignore Revert Prettier formatting, add .prettierignore 2022-02-27 16:33:10 -08:00
CONTRIBUTING.md fixed typo 2021-10-01 10:54:19 -04:00
LICENSE.md
README.md Changed minor typos 2021-10-01 10:53:19 -04:00
SECURITY.md Microsoft mandatory file 2022-05-18 22:06:48 +00:00
azure-pipelines.yml bump node version for pipelines 2022-03-24 16:07:09 -07:00
gulpfile.js Remove tas-client 2020-12-01 15:32:29 -08:00
package.json update husky config 2022-02-07 17:03:09 -08:00
yarn.lock update husky config 2022-02-07 17:03:09 -08:00

README.md

vscode logo

Visual Studio Code Documentation

You've found the Visual Studio Code documentation GitHub repository, which contains the content for the Visual Studio Code documentation.

Topics submitted here will be published to the Visual Studio Code portal.

If you are looking for the VS Code product GitHub repository, you can find it here.

Note: The vscode-docs repository uses Git LFS (Large File Storage) for storing binary files such as images and .gifs. If you are contributing or updating images, please enable Git LFS per the instructions in the Contributing section below.

Index

Visual Studio Code

VS Code is a lightweight source code editor and powerful development environment for building and debugging modern web, mobile, and cloud applications. It is free and available on your favorite platform - Linux, macOS, and Windows.

If you landed here looking for other information about VS Code, head over to our website for additional information.

Feedback

If you want to give documentation feedback, please use the feedback control located at the bottom of each documentation page.

Documentation Issues

To enter documentation bugs, please create a new GitHub issue. Please check if there is an existing issue first.

If you think the issue is with the VS Code product itself, please enter issues in the VS Code product repo here.

Contributing

To contribute new topics/information or make changes to existing documentation, please read the Contributing Guideline.

Workflow

The two suggested workflows are:

  • For small changes, use the "Edit" button on each page to edit the Markdown file directly on GitHub.
  • If you plan to make significant changes or preview the Markdown files in VS Code, clone the repo to edit and preview the files directly in VS Code.

Markdown Preview Button

Cloning

  1. Install Git LFS.
  2. Run git lfs install to setup global git hooks. You only need to run this once per machine.
  3. git clone git@github.com:Microsoft/vscode-docs.git.
  4. Now you can git add binary files and commit them. They'll be tracked in LFS.

Cloning without binary files

You might want to clone the repo without the 1.6GB images. Here are the steps:

  1. Install Git LFS.
  2. Run git lfs install to setup global git hooks. You only need to run this once per machine.
  3. Clone the repo without binary files.
    • macOS / Linux: GIT_LFS_SKIP_SMUDGE=1 git clone git@github.com:Microsoft/vscode-docs.git.
    • Windows: $env:GIT_LFS_SKIP_SMUDGE="1"; git clone git@github.com:Microsoft/vscode-docs.git.
  4. Now you can selectively checkout some binary files to work with. For example:
    • git lfs pull -I "docs/nodejs" to only download images in docs/nodejs
    • git lfs pull -I "release-notes/images/1_4*/*" to only download images in release-notes/images/1_4*
    • git lfs pull -I "docs,api" to download all images in docs and in api
    • git lfs pull -I <PATTERN>, as long as <PATTERN> is a valid Git LFS Include and Exclude pattern.

The history of this repo before we adopted LFS can be found at microsoft/vscode-docs-archive.

Publishing

Steps for how to publish documentation changes can be found here in the (private) repository of the VS Code website.