|
2 | 2 | <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
3 | 3 | # Contributing
|
4 | 4 |
|
5 |
| -- [Pull Requests](#pull-requests) |
6 |
| -- [Requirements](#requirements) |
7 |
| -- [Development Workflow](#development-workflow) |
8 |
| - - [Updating VS Code](#updating-vs-code) |
9 |
| -- [Build](#build) |
10 |
| -- [Structure](#structure) |
11 |
| - - [Modifications to VS Code](#modifications-to-vs-code) |
12 |
| - - [Currently Known Issues](#currently-known-issues) |
| 5 | +- [Contributing](#contributing) |
| 6 | + - [Pull Requests](#pull-requests) |
| 7 | + - [Requirements](#requirements) |
| 8 | + - [Development Workflow](#development-workflow) |
| 9 | + - [Updating VS Code](#updating-vs-code) |
| 10 | + - [Build](#build) |
| 11 | + - [Structure](#structure) |
| 12 | + - [Modifications to VS Code](#modifications-to-vs-code) |
| 13 | + - [Currently Known Issues](#currently-known-issues) |
13 | 14 |
|
14 | 15 | <!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
15 | 16 |
|
@@ -58,10 +59,13 @@ To develop inside an isolated Docker container:
|
58 | 59 |
|
59 | 60 | ### Updating VS Code
|
60 | 61 |
|
61 |
| -If you need to update VS Code, you can update the subtree with one line. Here's an example using the version 1.52.1 |
| 62 | +If you need to update VS Code, you can update the subtree with one line. Here's an example using the version 1.52: |
62 | 63 |
|
63 | 64 | ```shell
|
64 |
| -git subtree pull --prefix lib/vscode vscode release/1.52 --squash --message "Update VS Code to 1.52.1" |
| 65 | +# Add vscode as a new remote if you haven't already and fetch |
| 66 | +git remote add -f vscode https://github.com/microsoft/vscode.git |
| 67 | + |
| 68 | +git subtree pull --prefix lib/vscode vscode release/1.52 --squash --message "Update VS Code to 1.52" |
65 | 69 | ```
|
66 | 70 |
|
67 | 71 | ## Build
|
|
0 commit comments