Public documentation for Visual Studio Code
Перейти к файлу
Ornella c3500cd884 DateApproved 2020-10-08 11:18:38 -07:00
.devcontainer Add userEnvProbe, indicate what works in Codespaces 2020-09-11 06:53:01 -07:00
.vscode Commit LFS 2019-03-11 13:57:10 -07:00
api DateApproved 2020-10-08 11:18:38 -07:00
blogs DateApproved 2020-10-08 11:18:38 -07:00
build Merge branch 'master' into vnext 2020-10-08 09:08:15 -07:00
docs DateApproved 2020-10-08 11:18:38 -07:00
images Update README image 2019-06-05 12:54:24 -07:00
release-notes DateApproved 2020-10-08 11:18:38 -07:00
remote-release-notes Fix location of port forwarded screenshot 2020-10-06 10:19:35 +02:00
wiki/images Commit LFS 2019-03-11 13:57:10 -07:00
.editorconfig Commit LFS 2019-03-11 13:57:10 -07:00
.gitattributes Add section on using env vars to mount your home folder 2019-05-14 07:40:21 -07:00
.gitignore Commit LFS 2019-03-11 13:57:10 -07:00
CONTRIBUTING.md Update broken links and tune for A11y 2019-07-20 20:56:44 -07:00
LICENSE.md Commit LFS 2019-03-11 13:57:10 -07:00
README.md removed an extra space in readme 2020-08-12 07:21:01 -05:00
gulpfile.js Remote step-by-step remote tutorials 2020-07-10 10:30:20 -07:00
package.json Fix capitalization of GitHub org 2020-07-09 17:32:33 -07:00
yarn.lock Bump extend from 3.0.1 to 3.0.2 2019-09-03 14:16:31 +00: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.

Index

  1. About Visual Studio Code
  2. Feedback
  3. Documentation Issues
  4. Contributing to the documentation
  5. Publishing

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.